Re: [Angular] CORS issue

2022-10-05 Thread Vishnu Bidarakundi
That you have to enable on back end side On Wed, 5 Oct, 2022, 6:02 pm bastien lemaire, wrote: > CORS is not a front end or angular feature. it is a network feature, it > must be enabled on the server > > *Bastien Lemaire* > > > On Wed, 5 Oct 2022 at 14:25, 'Sanjai U iGCB' via Angular and

Re: [Angular] npm build angular project in a sub directory

2022-09-25 Thread Vishnu Bidarakundi
In package.json you can configure the build command On Sun, 25 Sep, 2022, 12:57 pm Pierre Kengne, wrote: > I have an angular project. The angular project is a subdirectory of an > overall package. > The angular project directory includes angular.json, scr folder etc... > > I have to build the

[AngularJS] Re: adding key board navigation on third party multi select drop down plugin

2019-06-29 Thread Vishnu Bidarakundi
Resolved by using the other directive ng select with [virtualscrolling] = true -- 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

[AngularJS] Re: adding key board navigation on third party multi select drop down plugin

2019-06-29 Thread Vishnu Bidarakundi
Resolved the issue by using the other directive ng select with [virtualscrolling] = true; On Thursday, June 27, 2019 at 12:21:08 AM UTC+5:30, Vishnu Bidarakundi wrote: > > > I have a multi select drop down , in that loading around 1900 domain > list , that drop is

[AngularJS] adding key board navigation on third party multi select drop down plugin

2019-06-26 Thread Vishnu Bidarakundi
I have a multi select drop down , in that loading around 1900 domain list , that drop is multi select and searchable , after the search the if that item is not available i can add that "item" to list . my above requirement is done in this third party library here is the link

[AngularJS] custom directive on click of cell reflecting all the rows

2019-03-25 Thread Vishnu Bidarakundi
Hi I am working on custom directive which has got some bugs i need to fix that. here is the html Code Description {{item['description']}} here on click of description link description has to

[AngularJS] uploaded image is reflecting after re starting ng serve command in angular 6

2018-10-19 Thread Vishnu Bidarakundi
0down votefavorite I am working on angular 6 and node project , after uploading image is saving in folder /assets/Images/uploades/image.jpg. uploaded images are dynamic

[AngularJS] Re: load jquery script after router.navigate

2018-03-06 Thread Vishnu Bidarakundi
On Tuesday, March 6, 2018 at 11:54:39 AM UTC+5:30, Vishnu Bidarakundi wrote: > > I have jquery script. I want to load those scripts after the > `router.navigate`. > > I tried with this code author component > > this.zone.run(() => this.router.navigate(['

[AngularJS] Re: I trying to generate PDF from HTML with multiple page breaks - angular 4

2018-03-05 Thread Vishnu Bidarakundi
On Wednesday, February 28, 2018 at 4:02:10 PM UTC+5:30, kiran naik wrote: > > Hello, > > I’m new to angular4, I trying to generate PDF from HTML with multiple > page breaks for multiple users like 200. The problem is I have to get the > JSON data from server and bind the data to HTML and

[AngularJS] load jquery script after router.navigate

2018-03-05 Thread Vishnu Bidarakundi
I have jquery script. I want to load those scripts after the `router.navigate`. I tried with this code author component this.zone.run(() => this.router.navigate(['/author'])) In other book component in `ngOnit` I am loading those scripts ngOnit(){ this.jquryscripts(); }

[AngularJS] ngOninit variable is not binding in html angular 4

2017-12-11 Thread Vishnu Bidarakundi
please help with this question below link having the description of the question. https://stackoverflow.com/questions/47752644/ngoninit-variable-is-not-binding-in-html-angular-4?noredirect=1#comment82465799_47752644 -- You received this message because you are subscribed to the Google Groups

[AngularJS] import CSV file in angular 4

2017-11-29 Thread Vishnu Bidarakundi
https://bl.ocks.org/mbostock/3886208 i am working on d3 charts, here they provided csv file i want to import it to my component. https://plnkr.co/edit/BooZfKJz0nLATpTe1SwH?p=info in this plunker they have provided json data like wise i want to return CSV data. created local CSV file.

[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();

[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] displaying information about marker on right side of map on marker click

2017-10-26 Thread Vishnu Bidarakundi
please help me with this question https://stackoverflow.com/questions/46968001/displaying-information-about-marker-on-right-side-of-map-on-marker-click here is plunker code https://plnkr.co/edit/KIvw5g0iKIAaSIwUS3AU?p=preview -- You received this message because you are subscribed to the

[AngularJS] nested ng-repeat with drop down

2017-09-21 Thread Vishnu Bidarakundi
I have a this JSON data : [ { "product_spec": { "id": 12, "name": "internal_storage", "unit_arr": [ { "unitID": 2, "name": "MB" }, { "unitID": 3,

[AngularJS] apply the style on the clicked element in ngFor

2017-09-12 Thread Vishnu Bidarakundi
I Have 5 material design cards i want apply border style once i clicked on one card , now it applying to all the cards. here is my code people: any[] = [ { "category": "Manage one", "imageUrl":"../../assets/img/icon1.png", "Id":1 }, { "category": "Manage Two",

Re: [AngularJS] Re: Twillio video session with angular 4

2017-08-28 Thread Vishnu Bidarakundi
If you have any reference or example please share the link. On Tue, Aug 29, 2017 at 8:01 AM, Sander Elias wrote: > Hi Vishnu, > > Just pull in the library you need, and start using it. it's mostly > self-contained. (as far as i can see from quickly eye-balling!) Not sure

[AngularJS] Twillio video session with angular 4

2017-08-28 Thread Vishnu Bidarakundi
Hi I have tried with this quick start example https://github.com/twilio/video-quickstart-js and it is working fine, now how can i integrate this code with angular 4? Regards Vishnu -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS

[AngularJS] display distance left to destination on marker click in a pop up angular leaflet

2017-04-21 Thread Vishnu Bidarakundi
please help me with question http://stackoverflow.com/questions/43555090/display-distance-left-to-destination-on-marker-click-in-a-pop-up-angular-leaflet Regards Vishnu -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To

[AngularJS] move a maker for every 5 seconds in a map angular leaflet

2017-04-19 Thread Vishnu Bidarakundi
help me with this question http://stackoverflow.com/questions/43489138/move-a-maker-for-every-5-seconds-in-a-map-angular-leaflet Regards Vishnu B -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this

[AngularJS] return a token from filter to a controller

2017-03-04 Thread Vishnu Bidarakundi
I want to generate a token for firebase cloud messaging ( push Notifications) The filter code: app. factory('Notification', function($rootScope,$q) { var Service = {}; Service.getTokenKey = getTokenKey; Service.getFirebaseToken = getFirebaseToken; const messaging =

[AngularJS] nested rest(async) calls with ng-repeat

2017-01-23 Thread Vishnu Bidarakundi
http://stackoverflow.com/questions/41800734/nested-restasync-calls-with-ng-repeat can anybody help me on this question?? -- You received this message because you are subscribed to the Google Groups "Angular" group. To unsubscribe from this group and stop receiving emails from it, send an email