Questions tagged as 'angularjs'

2
answers

No image is displayed when sharing on Facebook

Hi, I am using the Angular Socialshare library and when you share on Facebook, the image is not displayed, you can simply see the text of the content on the page, this is the code ... <a href="" socialshare socialshare-provider="faceb...
asked by 08.08.2017 / 00:43
3
answers

Error calling digest

My js file: $scope.loadOptions = function(email) { //aqui llamo a varios métodos y al final tengo voy asignando valores a variables $scope.$apply(); } my html file: <div ng-init="loadOptions"> <textarea class="w95" name="...
asked by 10.07.2017 / 14:51
1
answer

How to select an html element for the id from the ts with Ionic?

I need to select the instance of a html element for its id from the ts of a page of ionic , how do I do this?     
asked by 16.08.2017 / 23:09
1
answer

How to add a formatter to a bootstrap-table and Angular 4?

How to add a formatter to a bootstrap-table? Greetings community, I have the following problem I am using the bootstrap-table library in a project developed with Angular 4, I try to add a function to the data-formatter but it only shows me th...
asked by 17.08.2017 / 00:51
1
answer

Precompiler css (use of variables) in Angular4

I'm working with angular4 and I can not find in any web or forum, an efficient way to use a css precompiler (sass, less or stylus) along with modulo styles of angular4. That is, I want my application to continue having its own unique styles that...
asked by 22.06.2017 / 21:02
1
answer

Datetime-Local to Y-m-d format H: i: sP '?

I'm working on angular and I'm saving the datetime of two datetime-local with a ng-model <input type="datetime-local" ng-model="column_Data.date_Start" placeholder="yyyy-MM-ddTHH:mm:ss" min="2014-01-01T00:00:00"> and then I am sending...
asked by 02.06.2017 / 17:31
2
answers

Download a file with angularJS and c #

I have a question. I need to know how to download a file with angularJS and C # MVC . I already managed to save the file in a separate route, but when downloading I do not know how to recover it. I understand that it is by method GET...
asked by 04.04.2018 / 22:45
1
answer

How can I join several http.get responses and update ng-repeat?

I have a controller with several calls $http.get('/...') that get the data correctly. $scope.results = []; $http.get('/call1').then(function(response){ proccess(response); }); $http.get('/call2').then(function(response){ procces...
asked by 25.05.2017 / 21:26
1
answer

How to intere jquery with angular [closed]

I use ui-router with Angular and I would like to integrate the 2 but I can not find how to do it. The problem is that when I use a ui-router route the jquery code stops working.     
asked by 24.02.2017 / 17:43
2
answers

Problem with control of type DATETIME-LOCAL of HTML5 returns me the hour ahead

I have this control <div class="col-lg-6"> <input type="datetime-local" name="fechahora" step="1" min="{{meta.fechaActual}}" ng-model="evento.fechaInicio"> </div> But when I try it and select for example the next hour...
asked by 28.02.2017 / 18:06