Hi all,
i am using a ComboBox on a Form
C#<DxFormLayoutItem Caption="Cost Type:" ColSpanMd="12">
<Template>
<DxComboBox NullText="Select Cost Type ..."
Data="@costtypesList"
TextFieldName="CostTypeName"
ReadOnly="isDisabledMode"
@bind-SelectedItem="@request.CostType"/>
</Template>
</DxFormLayoutItem>
I would like to handle the SelectedItemChanged event but it already generated by @bind-SelectedItem
How can handle the event to add some own code?
Thanks.