Hi Jim,
Greetings from Syncfusion support.
Based on your requirement, we suggest you to bind the RowSelecting event of Grid. And in this event handler, call the ClearRowSelection method of Grid to achieve this requirement.
Please refer the code below,
<SfGrid @ref="GridInstance" DataSource="@Orders" AllowSelection="true">
<GridEvents RowSelecting="RowSelecting" TValue="Order"></GridEvents>
...
</SfGrid>
@code{
public List<Order> Orders { get; set; }
SfGrid<Order> GridInstance;
...
public async Task RowSelecting(RowSelectingEventArgs<Order> args)
{
await GridInstance.ClearRowSelection();
}
...
}
|
Please get back to us if you need further assistance.
Regards,
Renjith Singh Rajendran