Edit mode in single column

Hi!
Is it possible to put only one column into edit mode right away after Grid render on the page? My goal is to get a grid in which, after render, I'll have all boolean cells in column in edit mode like In the first row on the picture below, but without enabling edit mode in the rest of the rows cells.

1 Reply 1 reply marked as answer

RS Renjith Singh Rajendran Syncfusion Team April 21, 2021 12:30 PM UTC

Hi Lukasz, 

Greetings from Syncfusion support. 

We would like to inform you that you can enable editing for only one column/row in Grid at a time, this is the default behavior of Normal mode of editing in Grid. We suspect that your requirement is to display checkbox for all the Boolean column values in Grid rows. If so, then we suggest you to enable the DisplayAsCheckBox property in GridColumn, this will display checkbox for bool columns based on the Boolean values. 

Please refer the codes below, 

 
<GridColumn Field=@nameof(Order.Verified) ... EditType="EditType.BooleanEdit" DisplayAsCheckBox="true" ></GridColumn> 


Please get back to us if you need further assistance. 

Regards, 
Renjith R 


Marked as answer
Loader.
Up arrow icon