Hi All
I need the syntax for disable next grid column cell on Cumbobox selection change event. Could you please share me the syntax ?
<GridColumn Field=@nameof(Inspection.Icolumn4) Width="100">
<EditTemplate>
<SfComboBox TValue="string" TItem="Col4Data" @ref="combobox4"
Placeholder="Select"
bind-Value="@((context as Inspection).Icolumn4)" o
DataSource="@Col4DataList">
<ComboBoxFieldSettings Text="Name" Value="Name" />
<ComboBoxEvents Created="Created" TValue="string" TItem="Col4Data" ValueChange="OnValueChangeforCol4" />
</SfComboBox>
</EditTemplate>
</GridColumn>
private async Task OnValueChangeforCol4(Syncfusion.Blazor.DropDowns.ChangeEventArgs<string, Col4Data> args)
{
if (args.ItemData != null)
{
//Need syntax for disable the next Grid Column
}
}