Re: [AngularJS] Re: EXCEPTION: Unexpected directive value 'undefined' on the View

2015-09-25 Thread Zlatko Josic
I've solved it, definitely now :) I've change model little. Now I have Application -> EditView-> adding BafDialog dynamically -> Application. In another words I add BafDialog using DynamicComponentLoader. This allows me have deep structure, Application component in BafDialog can have BafDialog a

[AngularJS] Still Lost...please help

2015-09-25 Thread Dave Abbott
I am new at Angular...admitted. Thanks to all so far who have helped along the way! But still lost so maybe I am over / under thinking things. So basically I have a back-end API in Laravel 5, and all Angualr request hit some end-point for requests as expected. Back-end has 60+ controllers / 70+

[AngularJS] Re: Angular 2 doesn't redraw HTML when watched data changes?

2015-09-25 Thread Eric Martinez
Vern, it's most likely a zone.js issue not being able to catch the events raised by FileReader or similar. But internally ng2 uses Rx, and the latter one has some extensions for what you are trying. Here's a working plnkr http://plnkr.co/edit/vkJWwY617e9CZvqJwXmh Reference : - RxJS : https://

[AngularJS] Angular 2 doesn't redraw HTML when watched data changes?

2015-09-25 Thread Vern Jensen
I'm having an issue with Angular 2 (using Alpha 35) where I'm updating the data used by ng-for, but the HTML page doesn't refresh until the user does something to interact with it. I'm wondering if this is an Angular 2 bug, or something I'm not doing correctly. (Probably the latter.) I've got a

[AngularJS] Re: getting started

2015-09-25 Thread Eric Martinez
Hey Matt, see this issue https://github.com/angular/angular/issues/4176 El jueves, 24 de septiembre de 2015, 16:33:29 (UTC-3), Matt N escribió: > > trying to follow the guide at > https://angular.io/docs/js/latest/guide/gettingStarted.html > > doesn't work. > http://plnkr.co/edit/KuHLTbdtkXRR4Mvo

[AngularJS] Re: ng-url directive for @import url('') (load css dynamically)

2015-09-25 Thread Sander Elias
Hi William, I have a blog post about lazy loading css , perhaps that's f some help to you? Regards Sander -- You received this message because you are subscribed to the Google Groups "AngularJS" group. T

[AngularJS] Re: Printable Developer Guide w/ Print CSS -> DeveloperGuide.pdf available for download

2015-09-25 Thread yinfeng qin
Thanks, appreciate it :) On Saturday, January 26, 2013 at 12:10:09 AM UTC+8, Matt Kruse wrote: > > Like many, I sometimes like to print out documentation on paper to bring > with me to read when I have down time. > The current Angular docs online don't print well, but I found that with > some pr

[AngularJS] Re: ng-url directive for @import url('') (load css dynamically)

2015-09-25 Thread William Vega
Here is the callstack of the wrong request.. El viernes, 25 de septiembre de 2015, 10:30:30 (UTC-5), William Vega escribió: > > ng-src is a gr

[AngularJS] Apply isolated scope to transcluded content

2015-09-25 Thread samirjaguiar
Hi, I have a directive "outer" which uses a template and transcludes its contents. The template has a ngRepeat directive and an "inner" directive. Both directives (outer and inner) isolate their scope. What I wanted to do is set the scope of the transcluded element to be the isolated scope cre

[AngularJS] ng-url directive for @import url('') (load css dynamically)

2015-09-25 Thread William Vega
ng-src is a great directive, it allows you to hide de src request for an image until angular has fully loaded. I am having a bad time trying to figure out how can I reproduce this directive's behavior in my own directive in order to do the same but for loading CSS. Here is my code so far: .di

Re: [AngularJS] Re: Is it possible to export HTML to PDF or generate pdf in AngularJs without Using Other JS reference like jSPDF, PHANtom,etc

2015-09-25 Thread Daniel Lidström
Oops sorry, I read phantom only. Friday afternoon dyslexia… Disregard! — Daniel On Fri, Sep 25, 2015 at 3:57 PM, Sander Elias wrote: > Hi Daniel, > The OP specifically asked for something that's NOT jspdf. > Regards > Sander > -- > You received this message because you are subscribed t

[AngularJS] Re: Is it possible to export HTML to PDF or generate pdf in AngularJs without Using Other JS reference like jSPDF, PHANtom,etc

2015-09-25 Thread Sander Elias
Hi Daniel, The OP specifically asked for something that's NOT jspdf. Regards Sander -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to angular+unsubscr...@goog

Re: [AngularJS] Re: Keep modules running in the same order

2015-09-25 Thread mark goldin
And fetching them at reload is the problem. When the app loads initially it gets a token. But after loading another module and refreshing the app it's not following the same loading order. The last loaded module is trying loading before the first module completes its run. On Fri, Sep 25, 2015 at 4

Re: [AngularJS] Consume Async REST web service in AngularJS

2015-09-25 Thread Daniel Lidström
Try this: service.GetAllSensors = function () { return $http.get('http://localhost:8080//xx/xx') .then(function x) { return x.data; }); }; On Thursday, 24 September 2015 08:09:12 UTC+2, Mahendra Gurav wrote: > > Hi, > >I am using REST web service which is developed in Java. Below i

[AngularJS] Re: Is it possible to export HTML to PDF or generate pdf in AngularJs without Using Other JS reference like jSPDF, PHANtom,etc

2015-09-25 Thread Daniel Lidström
Yep, here's how: http://mrrio.github.io/jsPDF/ On Wednesday, 23 September 2015 15:32:05 UTC+2, Dev Kant kumar wrote: > > Hi Developer, > > I need to export any HTML (Div) to PDF using AngularJs only. > or can say need to generate PDF using AngularJS. > I done googling much more but not able to get

[AngularJS] Bootstrap UI Modal dismisses automatically....?

2015-09-25 Thread John H
Hi, So, I've been trying to create a modal [delete] confirmation window directive, that when 'confirm' is pressed a waiting icon is displayed until the $http call [to delete the item] has been completed. I think it worksbut I don't know why the modal window dismisses itself without $modal

[AngularJS] Re: Angular digest loop promise

2015-09-25 Thread Sander Elias
Hi Stuart, Angular works perfectly fine for UI manipulation, including SVG, and responsive stuff. I can't imagine a single thing I really need a 3rth party for. However, if you have some jquery stuff, whereof you think you really need it, you can wrap an directive around that, and combine it w

[AngularJS] Re: Keep modules running in the same order

2015-09-25 Thread Sander Elias
Hi Mark, That's not the way to solve this particular issue. There is more then one way to solve this. What is the best in your situation I can only guess. One solution is keep the tokens in localstorage. fetch them on reload of your app. Regards Sander -- You received this message because yo