Hello,
I have a master / detail form.
The detail form is of editable grid view type.
I have configured a checkbox field to make readonly another field, but not works, all records are readonly.
I use this code in the onLoadRecord event:
if ({chPvp} == 1) {
sc_field_readonly ({pvp}, off);
}
else {
sc_field_readonly ({pvp}, on);
}
This code used on ajax event works perfectly.
I am doing something wrong?