Severity Code Description Project File Line Suppression State
Error The attribute names could not be inferred from bind attribute 'bind-Value'. Bind attributes should be of the form 'bind' or 'bind-value' along with their corresponding optional parameters like 'bind-value:event', 'bind:format' etc. CMS C:\G\Case Manager Blazor Edition\CaseManager_SyncFusion\CMS\Pages\EditEvent.razor 85
Here is my code:
<div id="myMatter">
<Syncfusion.Blazor.Dropdowns.SfComboBox TValue="int?" TItem="VwActiveMatter"
Width="300px"
@bind-Value="@calendaritem.MatterId"
DataSource="@MattersList"
Placeholder=MyConstants.PLEASE_SELECT AllowFiltering=true>
<ComboBoxFieldSettings Text="CaseNumber" Value="MatterId"></ComboBoxFieldSettings>
<ComboBoxEvents TValue="int?" TItem="VwActiveMatter" OnValueSelect="ValueSelect" ValueChange="OnValueChange"></ComboBoxEvents>
</Syncfusion.Blazor.Dropdowns.SfComboBox>
<ValidationMessage For="@(() => calendaritem.MatterId)" />
</div>