[AngularJS] Re: Trying to use Angular Virtual Keyboard module in my Angular 2 app

2017-10-27 Thread Vladimir Makhnovskiy
Oh. Not even Angular 2 plugin. Dummy me... I ended up using Jquery UI virtual keyboard plugin. Works good. On Friday, October 27, 2017 at 1:38:58 AM UTC-4, Sander Elias wrote: > > Hi Vladimir, > > The virtual keyboard you found is an AngularJS (version 1.x) plugin. I > would not recommend

[AngularJS] Re: AoT Compiler Generates Incorrect External Directory References

2017-10-27 Thread kyle
Very interesting! I have been working for DAYS trying to figure this out. The modules exist inside of the src folder, sibling to the angular project, however, all of this exists under the .angular-cli.json file. Nothing is outside of the project root. I'm not sure if that qualifies as being

[AngularJS] $scope values inside the else block is not updating the view

2017-10-27 Thread Vishnu Bidarakundi
$scope values inside the else block is not updating the view , only the values inside the if block updating the view. google.maps.event.addListener(marker, 'click', (function(marker, scope) { return function() { if($rootScope.showMobile){ $scope.cityDetail();

Re: [AngularJS] Re: how to access the binded value from href in angular2

2017-10-27 Thread Vinu Prasad
how can I do that ? On Fri, Oct 27, 2017 at 11:42 AM, Sander Elias wrote: > Euhm, Yes? > > -- > You received this message because you are subscribed to a topic in the > Google Groups "Angular and AngularJS discussion" group. > To unsubscribe from this topic, visit

Re: [AngularJS] Re: how to access the binded value from href in angular2

2017-10-27 Thread Sander Elias
Euhm, Yes? -- 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. To post to this group, send email to

[AngularJS] Re: How to display selected checkbox using AngularJS with JSON format

2017-10-27 Thread Sander Elias
Hi Judy, Well, it depends on what you want. If you want to force the user to make a single choice, actually a radio is the correct way to handle that. If you want to use checkboxes.the user can select multiple results. That is not a problem, but the solution you need depends on how you want to

[AngularJS] marker information is not updating on marker click - angular

2017-10-27 Thread Vishnu Bidarakundi
I want to display information about the marker on right side of map on marker click.right now after marker click a modal window will appear in that i am entering a mobile number after that corresponding marker information is displaying, after that clicking on the other marker view is not

[AngularJS] Re: Why it did NOT include

2017-10-27 Thread Sander Elias
Hi Angularjs20162017, script tags are as a security feature not allowed in templates. You can read about this in the docs. All