Angular 12 Hindi tutorial #14 Property Binding Example

preview_player
Показать описание
In this angular 13 version video, we learn how to learn about property binding in angular 12. This video is made by anil Sidhu in the Hindi language

Steps of video
What is Property Binding?
Diff. Between Property binding and Interpolation?
Understand it with Example.
Interview Question
angular 13 tutorial for beginners in hindi

Рекомендации по теме
Комментарии
Автор

Bhai after going through your tutorials one song comes to my mind :- Yun to humne lakh haseen dekhe hain...tum sa nehi dekha... :) . Thank you for so detailed and very useful for beginners.

sagarchandrapradhan
Автор

Mera ek question h .... interpolation me boolean type value allow nhi hoti h ...iske according jo first time ....disable : true kiya tha aapne .ts page pr....uska impact bhi nhi pdna tha na?

pinkymaurya
Автор

Very helpful videos. Learned everything from here. Can you make a video with only interview questions and answer?

yalsonbhatta
Автор

Hi, I have one question: when you bind the property of html with atribute of the class when you change any of these the other is updated automatically? thank you!!!

hwosxtu
Автор

disable = true karne par interpolation me first Input field disable ho gya agar as a string count karta hai to true ko bhi as a string lena tha but aisa nahi hua aur input field disable ho gya but false ki condition me aisa nahi hua ....ye thoda confusion hai ... anyone explain please

NeedForMath
Автор

React js me cdn se application bna ne pr url me /#/ pas ho jata hai ise remove kr skte hai kya kr skte hai to kaise kre

tapendrasinghdhayal
Автор

THanks for the video, but I think u have misconfigured something as the one with the interPolation gets disabled but with the PropertyBinding does not

Thanks and Regards,
Vishal Saraswat

vishalsaraswat
Автор

How to disable the input property after clicking ??

raunakkumar
Автор

Sir how to add button in property binding

codinglight
Автор

in my code property binding not working why?

pallavisangale
Автор

Sir last wala exercise ka ek video bana dijiye

soumyabratachatterjee
Автор

Then, why this interpolation thing exists. If we have property binding with same property the their should be no significance of {{Interpolation}}.

Pujakumari-glkf
Автор

Please up load custom angular widzets sir

NaveenKumar-kvul
Автор

Please give one example of property binding with button

codinglight
Автор

<input type="text" value="{{name}}" disabled="{{disable}}"/>
<input type="text" [value]=name [disabled]=disable />
<br/><br/>
<button
<button


export class AppComponent {
title = 'Components App';
name='prashant'
disable = ''
EnableDisable(bool:any){
this.disable = bool;
}
}

rkvsfne
Автор

What did you upload today video on angular 12 in hindi?

alamshaikh
Автор

html part :
<input type="text" value={{value}} disabled = {{disable}}/>&nbsp;&nbsp;
<input type="text" [value]=value
<button class="enable" type="button"
<button class="disable" type="button"

ts part :
export class AppComponent {
title: string = 'Angular_Learning';
appName: string = 'Learning';
value = 'xyz'
disable = true
getReset(command:any) {
if(command == false){
this.disable = true
} else {
this.disable = false
}
}
}

sumanmukherjee
Автор

sir ek bachcha wala question-
main app.component.html k andar comment out krna chah rha hun but ho nhi rha h, itried several tricks
<--! -->, /* */, // but nothing is working in my case ...i couldnt find exact solution over stackoverflow as well

faisalmasood