I have a locked custom text field on an editable grid and would like this to not be locked. There is no javascript and everything on the field seems correct. On the form the field is editable just fine. What am I missing?
I have a locked custom text field on an editable grid and would like this to not be locked. There is no javascript and everything on the field seems correct. On the form the field is editable just fine. What am I missing?
If you are wondering where to find this just go to the entity's form designer and double-click on the sub-grid, add the JS library and connect to the OnRecordSelect event.
hi,
Call the following function for the OnRecordSelect editable grid event. Also check "Pass execution context as first parameter".
function onSelectSubGrid(context) { var subGrid = context.getFormContext().data.entity; subGrid.attributes.forEach(function (field, i) { field.controls.get(0).setDisabled(false); }); }
There is no business rule, flow, security, or javascript on the form that is tied to this grid.
Hello,
Sorry, I meant "Business Rule" on the form of related Entity.
could you explain more about what you mean?
hi,
Have you used "Business Process Flow" on the form of related Entity (Editable View)?
best regards.
Daivat Vartak (v-9d...
225
Super User 2025 Season 1
Muhammad Shahzad Sh...
106
Vahid Ghafarpour
82
Super User 2025 Season 1