I have a grid with Edit mode Popup code like below, this popup is good to add a new record.
Is there a way I can have 'View Only' Command instead of 'Edit' to show all data fields of a row in the popup?
I need it is because I need pull out more fields which are not in grid row.
.Editable(editable => editable.Mode(GridEditMode.PopUp).TemplateName("ItemEdit").Window(w => w.Title("Edit Item").Width(800)))
Thanks.