[AngularJS] Add image in ui-grid PDF Header

2016-11-29 Thread Kiran A
Hi All, how to add image in ui-grid PDF Header when we export from ui-grid. -- Thanks and Regards, *Kiran A* -- 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

[AngularJS] Re: Angular ng-src is flickering

2016-11-29 Thread Sander Elias
Hi Kempiloko, What happens is that on the first iteration the images need to get loaded from the server. Once those are in the browsers cache the flickering is gone. It's due to how you structured your template. Regards Sander -- You received this message because you are subscribed to the

[AngularJS] Angular ng-src is flickering

2016-11-29 Thread kempiloko
The first three images are flickering when the page is being loading, but after that it is gone. Does anyone know how I can solve this problem?

[AngularJS] MS DYNAMIC CRM LEAD in MANHATTAN, NY.

2016-11-29 Thread vin
Hello, We have an immediate contract opportunity for *MS DYNAMIC CRM LEAD* in *MANHATTAN, NY*. Please find the details below. If this interests you, please send your updated resume to v...@atriait.com *Role*: MS Dynamic CRM Lead *Location:* Manhattan, NY *Engagement Type: Contract*

[AngularJS] master / details $http.get or $http.post

2016-11-29 Thread Tito
Greetings, I have hit a wall after trying all kind of ways to have a page that has a header and then when user clicks on one header, the details of that header populate below it. The way I had was {{h.serialnumber }} {{h.fromcompany }} {{h.tocompany }} {{h.rmanumber }} My question is is

[AngularJS] Permission denied to access property "rejection"

2016-11-29 Thread norricorp
Hi, I started with the heroes tutorial and have changed the "add hero" code to a form. I do realise that from a controller perspective it would be far better to have this as a separate component and html. And that is fine. But when I run the current page (form plus a loop of ngFor), the form is

Re: [AngularJS] Re: Data binding inside JavaScript string, not happening.

2016-11-29 Thread Andrei Zhitkov
As a token of my gratitude, here's the finished project . On Sat, Nov 26, 2016 at 6:22 PM, Andrei Zhitkov wrote: > Check this out : AI spambots in action. :-) > > On Sat, Nov 26, 2016 at 5:43 AM,

[AngularJS] dynamic form generation using json schema

2016-11-29 Thread dhamodharan . b
Hi friends I need to create a dynamic form in angular js using a json schema provided can you please assist me the steps or the reference for the above mentioned problem since am a fresher fresher i need a assistance Regards Dhamodharan 9952005644 -- You received this message because you are

[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,

[AngularJS] Re: Keeping the static files secure

2016-11-29 Thread Pāvils Jurjāns
Of course, all communication must happen over https, but I specifically meant http-only cookie, it's a type of cookie that is stored in the browser's memory, but is not accessible via JavaScript. That's an extra measure of security to prohibit stealing of session cookie by a scripting attack.

[AngularJS] Re: Philosophy: Configurable components: Configuration objects vs. ContentChildren

2016-11-29 Thread Sander Elias
Hi Yoav, You should do both. There is a difference in use-cases. For myself, I prefer the content-children approach. However, there are cases where the json config will be much easier to integrate into your app. I can go more deeply into the why I think you should provide both, and also why I

Re: [AngularJS] Re: Understanding Code

2016-11-29 Thread foysal foysal
Nice reply. Thanks Yoav Luft @ Matific. On Tue, Nov 29, 2016 at 2:17 PM, Yoav Luft @ Matific < yoav.l...@slatescience.com> wrote: > >- core-js/client/shim - used for ES6 shims and polyfills. This is for >solving browser missing features etc. >- zone.js - used for creating isolated

[AngularJS] Philosophy: Configurable components: Configuration objects vs. ContentChildren

2016-11-29 Thread Yoav Luft
I would like to hear your thoughts as Angular developers on two approaches for making configurable components. Approach 1: Configuration Object Let's think of ui-grid like library to display a table for some raw data supplied by a host component. It has this kind of host template: And then in

[AngularJS] Re: Seed project for Angular2 lib development

2016-11-29 Thread 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

[AngularJS] Re: Error angular not defined

2016-11-29 Thread Sander Elias
Hi Rohit, You get that error when angular is not loaded. Check your developer console for errors. especially on loading errors. Regards Sander -- You received this message because you are subscribed to the Google Groups "Angular" group. To unsubscribe from this group and stop receiving

[AngularJS] Re: Understanding Code

2016-11-29 Thread Yoav Luft @ Matific
- core-js/client/shim - used for ES6 shims and polyfills. This is for solving browser missing features etc. - zone.js - used for creating isolated environments in Javascript, used by Angular2. - Reflect.js - ? - systemjs - Used by angular for configuration, loading parts,

Re: [AngularJS] Seed project for Angular2 lib development

2016-11-29 Thread foysal foysal
Why are you looking for seed project ? You can develop a seed project. On Tue, Nov 29, 2016 at 12:12 PM, Martin Kuhn wrote: > > Does anybody of you can recommend a seed project for ng2 library > development? > > > -- > You received this message because you are subscribed to

[AngularJS] Re: Accessing translations providers by a service

2016-11-29 Thread Yoav Luft @ Matific
Thank you. I've actually managed to answer most it myself, but there's still two issues: 1. I can't inject TRANSLATIONS after bootstrap. Not sure why, but it seems I might need to provide it twice and parse it twice. 2. There's an open issue on ng-xi18n not parsing code or anything