Title: 
new angular development features and improvements with error handling 
webinar by google employees

About Angular: 
Angular is a Typescript-based open-source front-end web application 
platform 
led by the Angular Team at Google and by a community of individuals and 
corporations.

What we’ll cover in this webinar... Any error you can fix after this webinar
1. Angular error handling with latest strategies
2. New tips to write clean and per-formant angular application
3. Improving the testability of the angular app
4. Add caching to APIs and Migrating to PWA
5. State Management in Angular
6. User Activity logging with Azure Application Insights
7. Integrate with any technology

Speaker: 
Ryan Russul who is a speaker and having 8 years of experience in UI 
development and worked 
as senior solution architect, practising code re-usability and enterprise 
practices 
in angular development among all teams who were responsible for angular 
development.

Join in webinar: http://ovpurl.com/c2V5oNgM


<https://lh3.googleusercontent.com/-9lNGYUlUmUU/W81KMsVhMJI/AAAAAAAAAlg/QpmI3_m-nhs-lMsQOKI81-NMYf3dbTIfgCL4CGAYYCw/s1600/angular-webinar-31st.jpg>

On Sunday, October 14, 2018 at 4:40:27 PM UTC+5:30, Ahmad Sajadian wrote:
>
> I want to make a google chrome extension that fills some text inputs in a 
> website that uses Angular. Each text input takes some action on "focus", 
> "keydown" and "blur". These events are added using some Angular 
> directives(?). Here's one of the input elements that I want to fill in the 
> page:
>
>
> <input id="input-1" data-ng-keydown="keyDown(cell, $event,$ 
> parent.$parent.$index, $index)" 
>
> data-ng-focus="cellEnter($event, cell)" data-ng-blur="cellLeave($event, 
> cell)" data-ng-disabled="timesheet.ReadOnly" 
>
> data-ng-model="cell.S_Minutes" class="cellInput ng-valid ng-dirty"
>
> type="text" style="margin-top:4px" maxlength="5">
>
>
> There are three directives that are interesting to me
>
>
> data-ng-focus="cellEnter($event, cell)"
>
> data-ng-blur="cellLeave($event, cell)"
>
> data-ng-keydown="keyDown(cell, $event,$ parent.$parent.$index, $index)"
>
>
> I want to set the value of this input to a value and trigger all the 
> events above. But I don't know How. If it was pure JS i could do something 
> like the following but it does not work here. Please note that as I said I 
> cannot change the logic of the website, I'm developing a chrome extension.
>
>
> el=document.getElementById('input-1');var evt = new KeyboardEvent('keydown');
> el.value="1";
> el.dispatchEvent(evt);
>
>
> Please excuse me if my question seems stupid, I'm in an intermediate level 
> in JS and know almost nothing about Angular. Any help is highly appreciated.
>

-- 
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.

Reply via email to