[AngularJS] Re: cdk-virtual-scroll-viewport usage with angular/flex-layout (row and wrap)

2019-01-07 Thread Martin Kuhn
Hi Sander,

o.k. now I get it... Thx for help

Regards,
Martin

Am Montag, 7. Januar 2019 11:38:33 UTC+1 schrieb Sander Elias:
>
> Hi Martin,
>
> Oh they do work with the cdk virtual scroll (CVS from here on). However, 
> your example has multiple items on a single "row". There is no way CVS is 
> able to determine how much space is needed. You iterate over say 100 items, 
> this results in 20 rows of 5 elements. How do you expect that CVS does that 
> calculation? To make it more complex, CVS needs to know which elements are 
> in view. 
> You can use the responsive features, but not without some scripting. Use 
> it to determine how many elements you can fit in a row, then use my helper 
> to make chunks that fit the rows, then you can use CVS to show the result.
>
> 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 it, send an email 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: cdk-virtual-scroll-viewport usage with angular/flex-layout (row and wrap)

2019-01-06 Thread Martin Kuhn
Hi Sander,

thanks for answering. But I can not imagine how this can solve my 
problem...  I would also like to use the responsive features of flexlayout 
and so on...

BTW, I am curious but what is the benefit of material virtual scrolling 
capabilities when none of the material components can be used with it 
(table, list, flexlayout etc.)

Regards,

Martin

Am Dienstag, 1. Januar 2019 17:02:35 UTC+1 schrieb Martin Kuhn:
>
> I would like to use virtual scrolling with flexlayout - e. g. the 
> following code should work with virtual scrolling:
>
>
>
>  
>.px]="size">
>  [style.height.px]="size 
> - 20">
>   Item #{{i}} - ({{size}}px)
> 
>   
>   
>
>
>
>
> I made a little demo: https://stackblitz.com/edit/angular-tikbvh which 
> shows the result (without virtualscroll) and an attempt to do the same with 
> cdk-virtual-scroll-viewport.
>
> Can anybody give me a hint how to do this???
>
> FYI, I asked this question already on stackoverflow...(
> https://stackoverflow.com/questions/53879757/cdk-virtual-scroll-viewport-usage-with-angular-flex-layout-row-and-wrap
> )
>

-- 
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 angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] cdk-virtual-scroll-viewport usage with angular/flex-layout (row and wrap)

2019-01-01 Thread Martin Kuhn
I would like to use virtual scrolling with flexlayout - e. g. the following 
code should work with virtual scrolling:



 
  

  Item #{{i}} - ({{size}}px)

  
  




I made a little demo: https://stackblitz.com/edit/angular-tikbvh which 
shows the result (without virtualscroll) and an attempt to do the same with 
cdk-virtual-scroll-viewport.

Can anybody give me a hint how to do this???

FYI, I asked this question already on 
stackoverflow...(https://stackoverflow.com/questions/53879757/cdk-virtual-scroll-viewport-usage-with-angular-flex-layout-row-and-wrap)

-- 
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 angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: Angular 2 deploy to Tomcat server?

2017-03-15 Thread Martin Kuhn
I think the problem is maybe the base href attribute. (default is set in 
index.html to "/").

You have to define it to the directory where the dist files are copied to 
(in tomcat -> when the directory is tomcat/webapps/myapp -> then the 
base-href has to be "/myapp/")

angular-cli provides the ability to define it via the --base-href flag. 
This means you build your app with "ng build --env=prod --base-href 
/myapp/".

HTH

Regards
Martin
Am Dienstag, 14. März 2017 16:09:36 UTC+1 schrieb Saju Thankathurai:
>
> Hi,
>
> I have created an Angular 2 application using angular-cli. I need to 
> deploy it in Tomcat server. I issued a command "ng build --env=prod". 
> Copied all files under dist folder to my tomcat/webapps folder. This was 
> not working and getting an error 
>
> Failed to load resource: the server responded with a status of 404 (Not 
> Found)
> polyfills.bundle.js Failed to load resource: the server responded with a 
> status of 404 (Not Found)
> styles.bundle.js Failed to load resource: the server responded with a 
> status of 404 (Not Found)
> vendor.bundle.js Failed to load resource: the server responded with a 
> status of 404 (Not Found)
> main.bundle.js Failed to load resource: the server responded with a status 
> of 404 (Not Found)
>
> Any other steps i need to follow?
>  
> --
> *Saju Thankathurai*
>

-- 
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 angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: Angular2+ Routing with PathLocationStrategy used in HTML for content management

2017-03-14 Thread Martin Kuhn
Hi Sander,

what you did is GREAT. Thank you very much.

I tried it out and it worked for me also in the production build with AOT.

(maybe because all I need is the usage in a div with innerHtml)

Regards
Martin

Am Montag, 13. März 2017 17:27:46 UTC+1 schrieb Sander Elias:
>
> Hi Martin,
>
> Here is your plunk, but then in working condition 
> . However, this is 
> only a partial solution, as this stops working when enableProdMode() is 
> turned on. Sorry, I didn't have had the time yet to sort this out. 
> (Organising ng-nl  now takes priority)
>
> 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 it, send an email 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: Angular2+ Routing with PathLocationStrategy used in HTML for content management

2017-03-13 Thread Martin Kuhn
Anything new on this topic?
TIA

Am Samstag, 11. März 2017 11:12:19 UTC+1 schrieb Sander Elias:
>
> Oh, it is possible, when I'm back in my office I will finish up a 
> directive that takes care off this.

-- 
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 angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: Angular2+ Routing with PathLocationStrategy used in HTML for content management

2017-03-11 Thread Martin Kuhn
That would be really great

Am Samstag, 11. März 2017 11:12:19 UTC+1 schrieb Sander Elias:
>
> Oh, it is possible, when I'm back in my office I will finish up a 
> directive that takes care off this.

-- 
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 angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: Angular2+ Routing with PathLocationStrategy used in HTML for content management

2017-03-10 Thread Martin Kuhn
Do you mean that it is not possible what I want?

TIA

Am Freitag, 10. März 2017 09:06:07 UTC+1 schrieb Sander Elias:
>
> Update,
>
> I can confirm the reloading indeed. not only with dynamic HTML, but also 
> with just static anchors.
>
>

-- 
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 angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: Angular2+ Routing with PathLocationStrategy used in HTML for content management

2017-03-09 Thread Martin Kuhn
Hi Sander,

thank you for responding.

I did a little plunkr to demonstrate the behaviour -> 
https://plnkr.co/edit/elLlqKbBsDRgTqcb8OnA?p=preview

Here I have 2 components -> routing via [routerLink] works fine. But when I 
try to specify the link in html which is shown via [innerHtml] it does not 
work...

Regards
Martin

Am Freitag, 10. März 2017 06:59:58 UTC+1 schrieb Sander Elias:
>
> Hi Martin,
>
> If your links look indeed like that, it should not reload, but indeed use 
> the route. IIRC,  tags don't need to be compiled/processed to work 
> with the router.
>
> 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 it, send an email 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Angular2+ Routing with PathLocationStrategy used in HTML for content management

2017-03-09 Thread Martin Kuhn

I have to manage some content pages which are maintained by my app (in an 
admin mode).
e.g. the admin writes the page with some editor in my app (using quill etc.)

the resulting html looks like 

MyTest


In this example content/detail/1083180739855 is a route in my SPA

When presenting this HTML-fragment to an end user in my ng SPA (via 
[innerHtml]) - the link click should NOT trigger the reload of the app.
Navigation should happen via angulars routing system.

Does anybody know how to do this?

TIA

-- 
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 angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Anguar 2+ - Http Mocking for development

2017-03-03 Thread Martin Kuhn
Hi,

I would to like to mock http requests not only for test but also for usual 
development. 

So I tried MockBackend which has the problem that also http request for 
images etc. are handled by MockBackend.
This means a more flexible solution has to be used.

Next approach was to extend the Http class and do the magic on my own. This 
works fine execpt error handling.

When I would like to return an error from my mocked http call I tried a 
construct like this:


...

let response = new Response(new ResponseOptions({ body: e, status: 
errorStatusCode, type: ResponseType.Error }));
response.ok = false;
return Observable.of(response);



But it seems this is recognized as successful response.

Does anybody of you know a solution to this problem?

TIA

-- 
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 angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Angular2 i18n state

2017-01-04 Thread Martin Kuhn
Hi,

does anybody of you has real world experience with i18n? 

I have the impression that this stuff is not really useful at this time

e.g. is there a way to handle programmatic access to text resources (and so 
on)?

Regards

Martin

-- 
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 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: Seed project for Angular2 lib development

2016-12-11 Thread Martin Kuhn
I looked at this already. This is very basic. 

Am Donnerstag, 1. Dezember 2016 19:00:51 UTC+1 schrieb John Brecht:
>
> Have you looked at this:
> https://github.com/jvandemo/generator-angular2-library
>
>
>>>

-- 
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 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: Seed project for Angular2 lib development

2016-11-29 Thread Martin Kuhn
HI Sander,

yeah I know, when it would be possible I would use ng-cli. But it supports 
no lib dev at them moment

Regards
Martin

Am Dienstag, 29. November 2016 09:44:19 UTC+1 schrieb Sander Elias:
>
> Hi Martin,
>
> I'm inclined to say ng-cli. It's not yet geared towards library 
> development, but I heard there will be some options for that in a not too 
> far future. Thing is, most tooling is not really suitable for library 
> development just yet.
> You don't want to create a large monolith, and yet you want the use of it 
> so simple it acts like one.
> I would say, check out ng bootstrap 
> , they seem to have the best 
> option I encountered so far. Perhaps that's the best seed available to you 
> now ;)
>
> Regards
> Sander
>
>
>

-- 
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 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Seed project for Angular2 lib development

2016-11-28 Thread Martin Kuhn

Does anybody of you can recommend a seed project for ng2 library 
development?


-- 
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 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: angular2 tools

2016-01-01 Thread Martin Kuhn
IntelliJ IDEA is really a good IDE for developing web apps in general (has 
good typescript support and so on ). 
It is also planned to provide good support for angular2 (currently no IDE 
supports angular2). 
For my point of view it is far better than any eclipse based IDE (which 
Aptana is)
So I think when you already use IntelliJ you can stick with it (especially 
when you have a licence, or you have to develop Java stuff)
On the other hand visual studio code is rather lightweight and free. When 
you don't want to spend money it would be my second choice.

Regards 
Martin

Am Donnerstag, 31. Dezember 2015 12:52:13 UTC+1 schrieb Philippe Couas:
>
> Hi,
>
> We recommend me Aptana Studio ? It's a good tool ?
>
> Regards
>
>
> Le lundi 28 décembre 2015 14:33:10 UTC+1, Philippe Couas a écrit :
>>
>> Hi,
>>
>> Which tool use to begin an angular2 devloppement ?
>> Currently i use Intellij for JEE
>>
>> Regards
>>
>> Phil
>>
>

-- 
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 to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: Angular 2: Global Hooks/ Events for Component Router

2015-12-22 Thread Martin Kuhn
Sorry I strongly disagree. I do the route config already on the "app" 
component. I don't see "coupling" -> I see this as cross cutting concern.
So I have to inject the "router logic" service into every Component and 
have to ask the service.

The decision should really be made by the developer. From my point of view 
the framework should provide the functionality.

Regards
Martin

Am Dienstag, 22. Dezember 2015 11:21:40 UTC+1 schrieb Sander Elias:
>
> Hi Manfred, Martin.
>
> There is a good reason there is no support for this. It leads to tightly 
> coupled code, and the code tends to land 'far' away from where it belongs.
> The easy solution is to create a service that checks the thing you need, 
> and then just assign that to the canActivate lifetime hooks you need it.
>
> Regards
> Sander
>

-- 
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 to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: Angular 2: Global Hooks/ Events for Component Router

2015-12-22 Thread Martin Kuhn
I don't see the big win for maintainability. The logic for the decision is 
probably in a service. So you have to inject this service into every 
component and implement "canActivate" . Only for calling the service which 
makes the decision

Regards

Am Dienstag, 22. Dezember 2015 14:41:46 UTC+1 schrieb Sander Elias:
>
> Hi Manfred,
>
> So, I did a quick check, and didn't find anything that convinces me it has 
> changed.
> I think your use case can be quickly resolved by using the 
> routerCanDeactivate 
>  
> lifecycle method, of the component that hosts the components you don't want 
> to allow.
>
> I have gone over a large amount of use cases, and did not find a use case 
> that really needed global routing hooks/events.  The way the router now 
> works, makes sure the routing is very close to the component's it is 
> involved with. This is a big win for maintainability.
>
> Regards
> Sander
>
>

-- 
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 to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: Dynamically add Component with Angular 2

2015-12-21 Thread Martin Kuhn
I have exactly the same problem. All what I want is to generate the 
template of a component dynamically. When I do it via loadIntoLocation how 
do I pass input bindings etc. and it feels rather messy (for a simple 
problem).

Am Montag, 21. Dezember 2015 23:57:25 UTC+1 schrieb Manfred Steyer:
>
> Hi Eric,
>
> now, I've looked into this and I have 2 questions:
>
> 1. The following sample creates a new Component-Instance with 
> loadIntoLocation and assignes a model to it. But how to set up bindings 
> (property, event, two-way)?
>
> this.loader.loadIntoLocation(DynamicComponent, this.element, 'attach')
> then((res) => {res.instance.model = model; this.savedComp = res;});
>
> 2. The solution at the end of [1] declares a CompiledComponent-Class 
> within the constructor. Somehow, that looks like a work-around. Is there an 
> other solution for this?
>
> [1] 
> http://stackoverflow.com/questions/32340641/angular-2-equivalent-of-ng-bind-html-sce-trustashtml-and-compile/32341540#32341540
>
> Wishes,
> Manfred
>
> Am Samstag, 19. Dezember 2015 20:12:08 UTC+1 schrieb Manfred Steyer:
>
>> Thanks for the hint!
>>
>> Best wishes,
>> Manfred
>>
>> Am Freitag, 18. Dezember 2015 21:45:43 UTC+1 schrieb Eric Martinez:
>>
>>> Manfred,
>>>
>>> you are looking for DynamicComponentLoader 
>>> .
>>>  
>>> You can check these questions to see some usage of it in SO 
>>> http://stackoverflow.com/search?tab=relevance=dynamiccomponentloader
>>>
>>

-- 
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 to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: Angular 2: Global Hooks/ Events for Component Router

2015-12-21 Thread Martin Kuhn
I can not believe that this common use case is not handled by the new 
router (I hope I am not wrong). Especially when you consider how long the 
router is in the works already...

-- 
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 to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Angular 2 with new Router

2015-03-21 Thread Martin Kuhn
I would be really interested when the new Router is useable with current 
Angular 2.

Has anybody info about this??

-- 
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 to this group, send email to angular@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


Re: [AngularJS] angular2 - two way data binding - how to

2015-03-09 Thread Martin Kuhn
Hi Sander,

great to hear. Thanks for information.

Regards

Am Montag, 9. März 2015 15:40:31 UTC+1 schrieb Sander Elias:

 Hi Martin,

 As far as I found out, on the moment, yes, you have to do it on your own.
 However, this is going to change as soon as the new formCollection thingie 
 will materialize. Also during the ng-conf I heard Misko talking about that 
 for the developer there would not be a big difference between ng-model and 
 what is coming. So, if you want to play now, you have to do it yourself, 
 but this is gone been taken care of.

 Regards
 Sander


-- 
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 to this group, send email to angular@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] angular2 - two way data binding - how to

2015-03-09 Thread Martin Kuhn
I'm curious about two way databinding in Angular2.

I played around with the quickstart project and would like to know how to 
get a value from an UI-element back to the model:

In the source example I used the change event and a manually update of the 
model. 

But this may not be the right way, or???

Here the example:

 import {Component, Template, bootstrap} from 'angular2/angular2';


@Component({
selector: 'my-app'
})

@Template({
inline:
'h1Hello {{ name }}/h1br/' +
'button (click)=changeValue()Change/button' +
'input #input type=text name=user [value]=name 
(change)=update($event)'
})

// Component controller
class MyAppComponent {
constructor() {
this.name = 'Alice';
}

changeValue() {
this.name='Peter';
}

update(e) {
console.log('update',e.srcElement.value);
this.name=e.srcElement.value;
}
}


bootstrap(MyAppComponent);

-- 
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 to this group, send email to angular@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] number filter is to inflexible - how to use angular formatNumber

2014-08-30 Thread Martin Kuhn
Hi,

I'm not happy with the number filter (which uses angular's 
internal formatNumber). Because of the lack of parameters you can use... 
(groupSep, decimalSep etc.)

I would need to call formatNumber. But it is inaccessible.

Can anybody of you give me an hint if it is possible to use formatNumber 


TIA

-- 
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 to this group, send email to angular@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.


[AngularJS] Re: event after angular has done its work and is idle (after digest loop)

2014-02-12 Thread Martin Kuhn

Hi Sander,

thank you for your effort!

but it seems that the plunker is not correct...

Regards,
Martin

Am Mittwoch, 12. Februar 2014 10:23:27 UTC+1 schrieb Sander Elias:

 you can see it in action in this plunker: 
 http://plnkr.co/edit/Sud2Y0VFy3SH3QtZojg7?p=preview




-- 
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 to this group, send email to angular@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/groups/opt_out.


[AngularJS] event after angular has done its work and is idle (after digest loop)

2014-02-11 Thread Martin Kuhn
HI,

I'm looking for a way to be informed when angular has finished the digest 
loop and is idle.

Is there a way how this can be achieved.

TIA

Martin


-- 
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 to this group, send email to angular@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/groups/opt_out.


[AngularJS] Re: event after angular has done its work and is idle (after digest loop)

2014-02-11 Thread Martin Kuhn
Hi Sander,

I would need it for testing with Selenium / cucumber in a Java environment. 
Currrently we wait a certain amount oft time...

Regards,
Martin

-- 
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 to this group, send email to angular@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/groups/opt_out.