Hi Lawrence,
Thanks for contacting Syncfusion support.
According to your requirement you need to add a border in the cell when the checkbox row is being modified. In this you mentioned the other types get a border(except checkbox) when the row is edited. In BatchEdit mode when the row is being edited the indication will be added in cell. So, please confirm with the below screenshot this is the border that you need to add in checkbox
In this you also mentioned that when the checkbox is clicked you does not want switch to text type. If you need an checkbox while editing the cell, mention EditType as “booleanedit” in the particular column.
In our sample when we set the EditType as Boolean and when the checkbox row is edited then the indicated will be added in cell.
Find the screenshot:
Code example:
@(Html.EJ().Grid<object>("FlatGrid") .Datasource((IEnumerable<object>)ViewBag.datasource) --------------- .Columns(col => { ---------- col.Field("Verified").HeaderText("Verified").EditType(EditingType.Boolean).Width(110).Priority(2).Add(); }) ) |
If you misunderstood your query, please get back to us.
Regards,
Prasanna Kumar N.S.V