Is there a simple way to disable all table rows (make them read only) based on the value of a variable on the form?
Hi @mikduc ,
You could do that with preOpen - you could have a check in there and if the condition is met return false to stop the edit or remove happening. See this example here, it's making all rows with the office of 'London' read-only.
preOpen
false
Cheers,
Colin
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
Hi @mikduc ,
You could do that with
preOpen
- you could have a check in there and if the condition is met returnfalse
to stop the edit or remove happening. See this example here, it's making all rows with the office of 'London' read-only.Cheers,
Colin