[AngularJS] Angular JS TreeView

2017-09-19 Thread explorer
Hi I am very new to this Angular but find it interesting with my so far reading about it. I want to develop a tree structure using it. i referred the online examples a lot but it didnt work for me. Any advise please! -- You received this message because you are subscribed to the Google Groups

[AngularJS] angular js tree view

2017-09-19 Thread explorer
hi need some help to craete a tree in angular js plese -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to angular+unsubscr...@googlegroups.com.

[AngularJS] Input Text element loses focus when Observable is active

2017-09-19 Thread robert
In an Angular 4 app me & my team are building, we've noticed that an Input element loses focus when an Observable is running (looking for a change to a Django model field). When the Observable is not running, the focus is not lost. Clearly this is unacceptable for the user experience. How

[AngularJS] Wow thank you NG2 team!

2017-09-19 Thread Tito
I am learning some NG2. started with a lot of hesitation but it is worth it Thank you for ng2 team for your hard work!!! -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving

[AngularJS] Re: Add http header to loadChildren http request

2017-09-19 Thread Sander Elias
Hi Brian, That's not How I do it. When I'm back in tomorrow, I will clean up one of my actual services and post it here. I leave the Original http service as it is, and I provide things like Phttp(Where the P stand for private), and also I have some like someRemoteAPiHttp. Regards Sander --

[AngularJS] Re: Add http header to loadChildren http request

2017-09-19 Thread olp455chicago
That would be great. Thanks Sander! On Tuesday, September 19, 2017 at 11:57:23 AM UTC-5, Sander Elias wrote: > > Hi Brian, > > That's not How I do it. When I'm back in tomorrow, I will clean up one of > my actual services and post it here. I leave the Original http service as > it is, and I

[AngularJS] Custom Child element changes capture in parent

2017-09-19 Thread Sonali Das
Hi, I have a custom input of type text used in various places in an angularJS application. In one of those custom input control, I need to detect onChange event and upon detection I have to update some other child element resides in same parent html page. How can I capture child element

[AngularJS] Re: Add http header to loadChildren http request

2017-09-19 Thread olp455chicago
Hi Sander, Thank you so much for the response! So, I think I tried that, but I might be misunderstanding. I am injecting my header in all AJAX requests by my application to our REST backend, I did this by creating my own AuthorizationHttpClient, that extends the Http class provided by

[AngularJS] Direct Download File

2017-09-19 Thread Adnan Salahuddin
Hi Folks, I am using Asp.net Core and Angular 2/4 In Asp.net: [HttpGet("GetDownload/{id}")] public FileResult Download([FromRoute] int id) { var getFile = _context.UploadPoliceReports.FirstOrDefault(m => m. UploadPoliceReportID == id); MemoryStream ms = new MemoryStream(getFile.Data);