JavaScript UI Libraries & Blazor Components Suite – Smart UI › Forums › Data Grid › Define individual cell readonly property › Reply To: Define individual cell readonly property
January 13, 2024 at 10:14 pm
#109678
Markov
Keymaster
Hi Catdoken,
You can try the Grid’s onCellBeginEdit callback function. grid.onCellBeginEdit = (id, dataField, cellValue) => { if (id === 2) return false; }
Best regards,
Markov