Hi John,
Greetings from Syncfusion support.
We have analyzed your query and we suspect that you want to display an plain text on clicking certain row for editing. So we suggest you to use the edit template feature of DataGrid. By using edit template we can customize our own way of editing for Grid columns. Kindly refer the below code snippet and UG for your reference.
|
<SfGrid DataSource="@Orders" AllowFiltering="true" Toolbar="@(new List<string>() { "Add", "Delete", "Update", "Cancel", "Search" })">
<GridEditSettings AllowEditing="true" AllowDeleting="true" AllowAdding="true"></GridEditSettings>
<GridColumns>
...
<EditTemplate>
@{
var data = (context as Order);
@data.CustomerID;
}
</EditTemplate>
</GridColumn>
</SfGrid> |
|
|
Kindly get back to us if you have further queries or if we misunderstood your query.
Regards,
Monisha