Angular component input properties

  Рет қаралды 148,039

kudvenkat

kudvenkat

Күн бұрын

Пікірлер: 44
@raqibul1000
@raqibul1000 7 жыл бұрын
The world is still beautiful because of some people like u
@ruthyayele168
@ruthyayele168 7 жыл бұрын
you are born to simplify and lovely coding. Mountain of thanks for you and your team
@sanmani7781
@sanmani7781 7 жыл бұрын
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.
@MrAnupkash
@MrAnupkash 4 жыл бұрын
A tricky concept explained very well. Thank you Sir!!
@srinivasaraopalakaluri1603
@srinivasaraopalakaluri1603 4 жыл бұрын
Your Explanation , Our Future . Thanks a lot :)
@kamdemkakengne
@kamdemkakengne 4 жыл бұрын
Thank you very much Venkat! You're a good teacher!
@lalitsharma3300
@lalitsharma3300 7 жыл бұрын
sir you are born to simplify and lovely coding. Mountain of thanks for you and your team
@rajarajanseeman6758
@rajarajanseeman6758 7 жыл бұрын
can't think of learning without you. Live long Venkat K
@DecentProgrammer
@DecentProgrammer 4 жыл бұрын
Best tutor in the world.
@deepwoodsengineering3763
@deepwoodsengineering3763 5 жыл бұрын
You're a legend, buddy!
@praptipopat
@praptipopat 5 жыл бұрын
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
@rkrhythms9351
@rkrhythms9351 6 жыл бұрын
Thank you for all the videos you post
@MuhammadIslam-qi2tf
@MuhammadIslam-qi2tf 6 жыл бұрын
Nice tutorial ,you solved my confusion. thanks
@AyushKumar-mo5cd
@AyushKumar-mo5cd 6 жыл бұрын
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_india
@rational_thinking_india 7 жыл бұрын
great video...waiting for WPF
@tazmazia5726
@tazmazia5726 7 жыл бұрын
Quick Q: Can we also pass data to input properties with simple variables rather than using functions?
@pallavikarpaklu2575
@pallavikarpaklu2575 5 жыл бұрын
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?
@coder5411
@coder5411 5 жыл бұрын
Hi venkat you are awesome.
@bemisalsharma521
@bemisalsharma521 7 жыл бұрын
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.
@saurabhchauhan232
@saurabhchauhan232 7 жыл бұрын
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.
@dusanradosavljevic2739
@dusanradosavljevic2739 7 жыл бұрын
Why values of all, male and female, works how expected in Edge but in firefox instead of value , they are undefined?
@mr_panda_india
@mr_panda_india 7 жыл бұрын
Great job sir !! Can you please make a video of Angular2 Routing and HTTP
@psreenu5565
@psreenu5565 7 жыл бұрын
it is very good tutorial i am waiting for coming videos
@pallavikarpaklu2575
@pallavikarpaklu2575 5 жыл бұрын
Can you also do an video on event emitter and subscriber concepts
@niharikamiryalavk
@niharikamiryalavk 4 жыл бұрын
thanks guruji :)
@chetanpl
@chetanpl 7 жыл бұрын
Very nice sir can you please make a video for parent function to child function calling and another example for child to parent.
@chetanpl
@chetanpl 7 жыл бұрын
Dear mentor please make video for interceptor. Http interceptor in angular 2
@priyankasurve7009
@priyankasurve7009 5 жыл бұрын
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
@qualitycleanvictoria2866
@qualitycleanvictoria2866 5 жыл бұрын
O Sir G Tussi Great Ho
@davidraja619
@davidraja619 6 жыл бұрын
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]); }); }
@sunilbehera6173
@sunilbehera6173 6 жыл бұрын
How to add Google pie chart in angular 4
@mrsatishkrjha
@mrsatishkrjha 6 жыл бұрын
getting error at this line return this.employees.filter(e => e.gender == '').length;--parameter 'e' has an any type
@mrsatishkrjha
@mrsatishkrjha 6 жыл бұрын
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 ..?
@24306529
@24306529 6 жыл бұрын
did you get to know why this is happening?
@24306529
@24306529 6 жыл бұрын
got it. In your tsconfig.json add this "noImplicitAny": false to "compilerOptions":{} it will work
@sambasiva6753
@sambasiva6753 7 жыл бұрын
i have doubt in this video what is (e => e.gender===male) why use " e=> "
@puttaarunkumar919
@puttaarunkumar919 7 жыл бұрын
This is ES6 JavaScript notation It refers function(e){ e.gender === ‘Male’; }
@sanmani7781
@sanmani7781 7 жыл бұрын
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-uj1df
@kirankumar-uj1df 7 жыл бұрын
please explain what is 'e' here
@puttaarunkumar919
@puttaarunkumar919 7 жыл бұрын
'e' is the parameter that u give in function i.e., function(e){ e.gender === male; }
@sanmani7781
@sanmani7781 7 жыл бұрын
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
@irajeshtailor
@irajeshtailor 4 жыл бұрын
Still not well described
Angular component output properties
16:56
kudvenkat
Рет қаралды 154 М.
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 81 МЛН
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН
Angular component lifecycle hooks
13:51
kudvenkat
Рет қаралды 218 М.
Hierarchical Organization Structure with SQL Server using Recursive CTE
10:53
Data Engineering Toolbox
Рет қаралды 72
Angular pipes
8:22
kudvenkat
Рет қаралды 124 М.
Angular 6 Basics 21 - Understanding dependency injection
10:23
Java Brains
Рет қаралды 72 М.
Passing data between components in angular
10:33
kudvenkat
Рет қаралды 115 М.
Angular 2 container and nested components
11:09
kudvenkat
Рет қаралды 138 М.
Angular property setter vs ngonchanges
13:16
kudvenkat
Рет қаралды 28 М.
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН