The world is still beautiful because of some people like u
@ruthyayele1687 жыл бұрын
you are born to simplify and lovely coding. Mountain of thanks for you and your team
@sanmani77817 жыл бұрын
Sir really who ever came and watched your videos And will comes are blessed people. I didnt know how to proceed with angular but u made my learning very easy. Ur teaching is very good. Even i feel to teach very clearly to others. Thank you sir u r motivating to teach others with clear view.
@MrAnupkash4 жыл бұрын
A tricky concept explained very well. Thank you Sir!!
@srinivasaraopalakaluri16034 жыл бұрын
Your Explanation , Our Future . Thanks a lot :)
@kamdemkakengne4 жыл бұрын
Thank you very much Venkat! You're a good teacher!
@lalitsharma33007 жыл бұрын
sir you are born to simplify and lovely coding. Mountain of thanks for you and your team
@rajarajanseeman67587 жыл бұрын
can't think of learning without you. Live long Venkat K
@DecentProgrammer4 жыл бұрын
Best tutor in the world.
@deepwoodsengineering37635 жыл бұрын
You're a legend, buddy!
@praptipopat5 жыл бұрын
very nice explanation. I tried this by not removing refresh button and getemployees() method. So initially it showed me count of 4 for all employees. Now when I click on refresh, it adds one more record and at the same time count gets updated automatically. That's nice but I can't understand that how it is handling this latest count? It would be really great if you can answer this. Thanks
@rkrhythms93516 жыл бұрын
Thank you for all the videos you post
@MuhammadIslam-qi2tf6 жыл бұрын
Nice tutorial ,you solved my confusion. thanks
@AyushKumar-mo5cd6 жыл бұрын
Hi Venkat , great tutorial , i am new to angular so may be this question is silly but would not it be easier if we can directly import the employee list ts file into employeeCount ts file or do we need to have a view in between to access the properties of other TS files?
@rational_thinking_india7 жыл бұрын
great video...waiting for WPF
@tazmazia57267 жыл бұрын
Quick Q: Can we also pass data to input properties with simple variables rather than using functions?
@pallavikarpaklu25755 жыл бұрын
I have two sibling component 1) searchbar 2) employeelist based on what i type in searchbar component I was my results to filter in eemployeelist component. Can you suggest which is an appropriate way to do this?
@coder54115 жыл бұрын
Hi venkat you are awesome.
@bemisalsharma5217 жыл бұрын
Your all video are very helpful...and its easy to us understand all things... let me know when will you upload the video crud operation using angular2 and asp.net mvc.
@saurabhchauhan2327 жыл бұрын
Can you please make a video for Rx Js with angular ? There are some methods like flatmap , switch map and something deferred object but can't understand. If you would do it that would be much helpful.
@dusanradosavljevic27397 жыл бұрын
Why values of all, male and female, works how expected in Edge but in firefox instead of value , they are undefined?
@mr_panda_india7 жыл бұрын
Great job sir !! Can you please make a video of Angular2 Routing and HTTP
@psreenu55657 жыл бұрын
it is very good tutorial i am waiting for coming videos
@pallavikarpaklu25755 жыл бұрын
Can you also do an video on event emitter and subscriber concepts
@niharikamiryalavk4 жыл бұрын
thanks guruji :)
@chetanpl7 жыл бұрын
Very nice sir can you please make a video for parent function to child function calling and another example for child to parent.
@chetanpl7 жыл бұрын
Dear mentor please make video for interceptor. Http interceptor in angular 2
@priyankasurve70095 жыл бұрын
I want to send click event from parent to child Can you please explain all the possible ways I have button on parent component and after clicked need to send it to child as action performed in client
@qualitycleanvictoria28665 жыл бұрын
O Sir G Tussi Great Ho
@davidraja6196 жыл бұрын
We got the response from API and I need to pass that data into a different component. Please guide me to do constructor(private http:HttpClient,private router:Router,private fb: FormBuilder) { } onSubmit(data):void{ console.log('onSubmit'); //console.log(this.findACarForm.value); this.http.get('localhost/getcars').subscribe((res: Response) => { console.log("test angular response:"+ JSON.stringify(res)); this.router.navigate(['/choose/', res]); }); }
@sunilbehera61736 жыл бұрын
How to add Google pie chart in angular 4
@mrsatishkrjha6 жыл бұрын
getting error at this line return this.employees.filter(e => e.gender == '').length;--parameter 'e' has an any type
@mrsatishkrjha6 жыл бұрын
i couldn't understand, code is running but showing as error in visual studio ..i guess it's vs behavior or something else ..can someone elaborate that if faced same issue ..?
@243065296 жыл бұрын
did you get to know why this is happening?
@243065296 жыл бұрын
got it. In your tsconfig.json add this "noImplicitAny": false to "compilerOptions":{} it will work
@sambasiva67537 жыл бұрын
i have doubt in this video what is (e => e.gender===male) why use " e=> "
@puttaarunkumar9197 жыл бұрын
This is ES6 JavaScript notation It refers function(e){ e.gender === ‘Male’; }
@sanmani77817 жыл бұрын
sambasiva naidu - that is ES6 new feature called arrow function(=>) that means we can use this only for anonymous functions. function(e) is represent to e =>
@kirankumar-uj1df7 жыл бұрын
please explain what is 'e' here
@puttaarunkumar9197 жыл бұрын
'e' is the parameter that u give in function i.e., function(e){ e.gender === male; }
@sanmani77817 жыл бұрын
KIRAN KUMAR Jala - please check the below link for what is e in function.. you can get very clear understanding of e. stackoverflow.com/questions/10323392/in-javascript-jquery-what-does-e-mean