[AngularJS] Re: angular watch 'ng build -op dist -w' causes issue with watch failing to build post any minimal change

2017-07-25 Thread Sander Elias
Hi Kartech11,, You don't need the `-op dist` part, as that is the default anyway. The `-w` flag puts the cli in watch mode, which is what you want. If there are error's that means that there are still error's in your code, that you need to fix. Committing any change to disk, will indeed

[AngularJS] Re: url is change when click twice link

2017-07-25 Thread Sander Elias
Hi Myat, As I never used the UI router, this is a but of a guess. but it looks like you are developing from a local file-system. That is probably the root cause, use a development server to host your files on localhost. A simple solution is http-server

[AngularJS] Re: running angular multiple apps from one folder

2017-07-25 Thread Sander Elias
Hi Tito, The advice Zlatko gave is solid. Create a separate backend/API server. keep that out of your frontend folder. Developing nowadays will give you a enormous amount of code in node_modules. For your angular project, this is totally unimportant. Once you build for staging/production,

[AngularJS] Re: Bindings Not Reflected

2017-07-25 Thread Sander Elias
Hi Chaitanya, As I'm unsure of what it is that you want to accomplish, or why you want to single out some of your options, there is little I can do to help you. Using ngOptions means that you don't have (direct) access to the option nodes in the select anymore, so styling them on their content

[AngularJS] url is change when click twice link

2017-07-25 Thread Myat Kaung Htet
I use ui route to change view and use scrollto function. When I click this link first time, url is /index.html#/business/business#business This is what I want. When I click this link again, url is changed to file:///Users/phyuhninwai/Desktop/VIMIC/index.html#/business/business Here is my

Re: [AngularJS] Re: running angular multiple apps from one folder

2017-07-25 Thread Zlatko Đurić
Certainly! Personally I would strongly suggest separating the codebases completely (backend is 1 repo, for now, frontend is another completely. Takes care of so much confusing things.) Anyway, you need a few things set up. Like, you don't wanna let your entire node_modules/ folder public. You

[AngularJS] Re: Bindings Not Reflected

2017-07-25 Thread Chaitanya Babar
Hi Sander, Thanks for the help .I switched from using ng-repeat to ng-options & it worked properly in IE . Now i cannot use ng-class with the ng-options . I tried using directive writing on ng-options but it did not helped . Can you suggest any approach to use ng-class with ng-options . If not

[AngularJS] Re: running angular multiple apps from one folder

2017-07-25 Thread Tito
ok been a while and now I am ready to dive in. so yes I am using angular code with node.js I would also like to use same node_modules for these I do not want node_modules sprawl. Is that possible to have shared modules folder for both to use? Thanks On Wednesday, June 21, 2017 at 1:16:28 AM

[AngularJS] Re: Datatable Directive

2017-07-25 Thread Tito
looks good to me. ever looked into , does a lot for you with this type of stuff if you want to use external module. https://angular-ui.github.io/bootstrap/ On Tuesday, July 25, 2017 at 8:31:09 AM UTC-7, Huzeyfe Coşkun wrote: > > >

[AngularJS] angular watch 'ng build -op dist -w' causes issue with watch failing to build post any minimal change

2017-07-25 Thread kartech11
Hi, I am looking to setup the dist folder as an asset bundle for my dropwizard application as ng bulid would generate the files under dist folder. I am given to understand that 'ng build -op dist -w' would create a watch on the dist folder but I see that it constantly generates errors even if

[AngularJS] how to use webpack node loader in angular

2017-07-25 Thread Stéphane Ancelot
Hi, I would like to use shared libs using node-loader in angular. my lib is stored in build/Release/control.node file I do not manage to import it in angular Regards, steph -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group.

[AngularJS] Datatable Directive

2017-07-25 Thread Huzeyfe Coşkun
hi there, i made simple datatable directive , its very easy to use (for me at least) maybe the code can be better because i

[AngularJS] Re: How to update the meta tag in angular2 universal?

2017-07-25 Thread Sander Elias
Hi Krishna, You can use the meta tag service . Regards Sander -- 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

[AngularJS] How to update the meta tag in angular2 universal?

2017-07-25 Thread krishna
We are using Angular2 universal. We are trying to update the meta tag using ng2-meta. This works for JIT build but not for aot or universal. What is the option to update the meta tag using server side rendering. -- You received this message because you are subscribed to the Google Groups