I'm developing an application with Ionic v1 whose API is in PHP / Mysql and now need to implement a login system. I already have the platform running from the web, it's a social network.
As I'm a beginner in Ionic, I have "stitched" the money...
I'm using the angular-charts.js library
I want to display values that return from the bank, formatted in monetary values
$scope.series = ['Valor Etapa', 'Valor Realizado', 'Resultado'];
$scope.labels = [];
$scope.data = [];
if (typeo...
Does anyone know how to select a data and go to an editing screen, using html, angularJS and php?
Example:
I have a list of contacts.
I want to make a button that holds the id of that contact and when I click on this button, it takes me to an...
I have a AngularJS variable that stores a whole jSON that I load, the jSON data looks like this:
{
"Products": "Pimenta Vermelha muito boa",
"Product_Code": "XXXXX",
"RTV": "Alisson Acioli",
"Regional": "Sudeste",
"C...
Good morning. I am not able to concatenate the AngularJS files using the gulp concat module. I have already tried to change the directory file and it still does not work. The problem is that no error appears to me, it simply does not concatenate...
Creating an app with AngularJS and would like the user to choose a photo of their storage to insert as an image of their profile, that is, I want to search the image in the internal memory. Is it possible?
$scope.pegaArquivo = function (files)...
I'm using select and angularJs, my selectize is set up like this :
no controller
//configurando o select mrdicamento
$scope.selectize_medicamento = {
plugins: {
'remove_button': {
label: ''
}
},
max...
Hello everyone, I'm using the select2 plugin in my project. I need to create multiple selects2 dynamically, by angular. I have a vector of objects (with id, name) and I need from an event, in a function to generate a select to of each object, be...
I have the following method:
$scope.upload = function (files) {
if (files && files.length) {
for (var i = 0; i < files.length; i++) {
var file = files[i];
if (!file.$error) {
Uplo...
I'm using the template in Angular. I need to open a page within a modal, for this I used a code that was suggested by the template support:
<script type="text/javascript">
$('#conteudo2').on({
'show.uk.modal': function () {...