@@ -45,23 +45,23 @@ Simple textbox-like inputs do not have any special behavior. You need to bind th
4545 <ValidationSummary />
4646
4747 <p class="name">
48- Name: <TelerikTextBox bind-Value="@ person.Name"></TelerikTextBox>
48+ Name: <TelerikTextBox @ bind-Value="person.Name"></TelerikTextBox>
4949 <ValidationMessage For="@(() => person.Name)"></ValidationMessage>
5050 </p>
5151 <p class="height">
52- Height (cm): <TelerikNumericTextBox bind-Value="@ person.Height" />
52+ Height (cm): <TelerikNumericTextBox @ bind-Value="person.Height" />
5353 <ValidationMessage For="@(() => person.Height)"></ValidationMessage>
5454 </p>
5555 <p class="birthday">
56- Birthday: <TelerikDateInput bind-Value="@ person.Birthday" Format="dd MMMM yyyy"></TelerikDateInput>
56+ Birthday: <TelerikDateInput @ bind-Value="person.Birthday" Format="dd MMMM yyyy"></TelerikDateInput>
5757 <ValidationMessage For="@(() => person.Birthday)"></ValidationMessage>
5858 </p>
5959 <p class="favorite-day">
60- Favorite date: <TelerikDatePicker bind-Value="@ person.FavoriteDay" Format="dd MMMM yyyy"></TelerikDatePicker>
60+ Favorite date: <TelerikDatePicker @ bind-Value="person.FavoriteDay" Format="dd MMMM yyyy"></TelerikDatePicker>
6161 <ValidationMessage For="@(() => person.FavoriteDay)"></ValidationMessage>
6262 </p>
6363 <p class="accepts-terms">
64- Accepts terms: <InputCheckbox bind-Value="@ person.AcceptsTerms" />
64+ Accepts terms: <InputCheckbox @ bind-Value="person.AcceptsTerms" />
6565 <ValidationMessage For="@(() => person.AcceptsTerms)"></ValidationMessage>
6666 </p>
6767
@@ -119,7 +119,7 @@ The DropDownList always has an item selected - the first item from its data sour
119119 <DataAnnotationsValidator />
120120 <ValidationSummary />
121121 <p class="gender">
122- Gender: <TelerikDropDownList bind-Value="@ person.Gender" DefaultItem="@ddlHint"
122+ Gender: <TelerikDropDownList @ bind-Value="person.Gender" DefaultItem="@ddlHint"
123123 Data="@genders" TextField="MyTextField" ValueField="MyValueField">
124124 </TelerikDropDownList>
125125 <ValidationMessage For="@(() => person.Gender)"></ValidationMessage>
0 commit comments