[AngularJS] Re: Angular 2 equivalent to window.onscroll()?

2016-05-12 Thread Sander Elias
Hi Vern, You can attach as many scroll events as you like. See this example if you don't believe me: #container { position: absolute; height: auto; top: 0; bottom: 0; width: auto; left: 0; right: 0; overflow: auto; } #foo { height:1000px;

[AngularJS] Re: AngularJS: How to show & hide busy indicator with bit of animation

2016-05-12 Thread Sander Elias
Hi Tridip, A simple ng-show will do. Here is an example . I put in a very simple spinner, but with adding some extra CSS, you can format it just as you need it, including the animations. Regards Sander -- You received this message because

[AngularJS] Angular 2 equivalent to window.onscroll()?

2016-05-12 Thread Vern Jensen
I have an angular directive I'd like to 'listen' to an onscroll() event. But window.onscroll() can have only one listener. Is there an Angular2 event I can register for instead, so each directive gets this event? -- You received this message because you are subscribed to the Google Groups

[AngularJS] Re: AngularJS: How to show & hide busy indicator with bit of animation

2016-05-12 Thread Tridip Bhattacharjee
still got no answer... :( On Wednesday, May 11, 2016 at 5:13:21 PM UTC+8, Tridip Bhattacharjee wrote: > > long time back i developed a busy indicator by jquery and it works well. > we can show when i want and also can hide too. > > the same functionality i like to develop in angular

[AngularJS] IE 11 and $sce support

2016-05-12 Thread Mike Park
Does anyone know how to get a PDF to display in IE 11 using Angular's Strict Contextual Escaping ($sce)? I make the call to trustAsResourceUrl() which works in Firefox and Chrome, but this appears not to work in IE. Does anyone know what the equivalent call to this might be, and if so, how

[AngularJS] IE 11 and $sce support

2016-05-12 Thread Mike Park
Does anyone know how to get a PDF to display in IE 11 using Angular's Strict Contextual Escaping ($sce)? I make the call to trustAsResourceUrl() which works in Firefox and Chrome, but this appears not to work in IE. Does anyone know what the equivalent call to this might be, and if so, how

[AngularJS] Re: Getting an instance of a pipe with just its name.

2016-05-12 Thread Aaron Smith
So, I have this working, sort of. What I'm doing is using Multi-Providers to add additional pipes to the application at bootstrap time. This is fine because we need these pipes to be available globally. This looks like this: export const APPLICATION_PIPES = [ BytesPipe // This is a custom

[AngularJS] Re: Getting an instance of a pipe with just its name.

2016-05-12 Thread Aaron Smith
The goal here is not to have a filter filter, or even a filter that runs with every change detected. Really, the goal is to employ Angular's already built pipes + pipe extensibility to pass data through arbitrary filter during metadata reference resolution. In fact, the system is designed so

[AngularJS] Re: Moving options between two multi select boxes when triggered by buttons? Best way with Angular?

2016-05-12 Thread Yousuf Mama
@Scott Howser do you have any idea on how to integrate these buttons code with angular-drag-and-drop library? On Sunday, March 24, 2013 at 1:02:01 AM UTC+5:30, Matt Raible wrote: > > This works great for moving items between two selects. Do you have > something similar for re-ordering the items

[AngularJS] Angular2 + Express.js running on the same port?

2016-05-12 Thread Kyle Thomas
Is it possible to start up node and have both run on the same port? -- 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...@googlegroups.com. To post

Re: [AngularJS] Moving options between two multi select boxes when triggered by buttons? Best way with Angular?

2016-05-12 Thread Yousuf Mama
On Wednesday, August 27, 2014 at 7:25:06 PM UTC+5:30, Scott Howser wrote: > > This is a very nice example I created. 100% angular and hase some nice > features. > > http://jsfiddle.net/4zt4k5er/ > > > On Tuesday, June 17, 2014 5:10:19 AM UTC-4, Sweta Sadhya wrote: > >> Plz help me with this. >>

[AngularJS] OnPush change detection strategy for components without @Input properties

2016-05-12 Thread Naresh Bhatia
>From what I have read so far, when I use the OnPush ChangeDetectionStrategy, Angular2 will only dirty check a component if its input properties change. Does this mean that OnPush *does not* affect how local properties are checked (properties that are not input properties)? In other words, in

[AngularJS] Anchor links within a different url/page

2016-05-12 Thread Rebecca Smith
Hello, I am hoping someone is able to help me. I am working on a website that uses AngularJS which I don't have a great deal of knowledge on. Whenever I link to an anchor that is within another page/url I get a 404 error, after much research I have found that this commonly known but all of the

Re: [AngularJS] Google Adwords changes the Landing Page urls for AngularJS pages handled by UI Router

2016-05-12 Thread Donald Organ
No the URLs are correct. Any URL parameters should be after the path and before the hash, otherwise the browser will see them as part of the hash. On Thursday, May 12, 2016, SC wrote: > I have 2 pages designed on AngularJS: > > https://www.example.com/book/ [List page] >

[AngularJS] Re: Add row in table

2016-05-12 Thread Sander Elias
Hi Coco, You can't in this example. The array is encapsulated into a promise. There is no way to change the array in there. You need to change the CrisisService, so it uses an other form of storage, so you can then add an addCrisis method to it. Regards Sander -- You received this message

[AngularJS] I need the source code datatables with filters

2016-05-12 Thread gad berenstein
for my site plombier paris i need please to put different search input in angularJS for searching the columns -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails

[AngularJS] Google Adwords changes the Landing Page urls for AngularJS pages handled by UI Router

2016-05-12 Thread SC
I have 2 pages designed on AngularJS: https://www.example.com/book/ [List page] and https://www.example.com/book/#/vs [Individual page] But in Adwords when user clicking on our ads the google tracking id that get's added are like siteurl/book/?gclid#/vs where it should have been like

[AngularJS] Add row in table

2016-05-12 Thread coco
*Hello all ! I would like to know how I can to add/push a row in the example of heroes and crisis * *function CrisisService($q) { var crisesPromise = $q.when([{id: 1, name: 'Princess Held Captive'},{id: 2, name: 'Dragon Burning Cities'},