However the checkboxes to delete each row of the subform still appeared.
I modified two lines of the nuform.js file to prevent appearing the delete checkboxes on each subform row, but I don't know if this could affect anything else.
To prevent creating the delete checkboxes I modified line 1188 form:
Code: Select all
nuRecordProperties(SF.forms[c], prefix, rowWidth - 40);
Code: Select all
if(SF.delete == '1') nuRecordProperties(SF.forms[c], prefix, rowWidth - 40);
Code: Select all
rowWidth = rowWidth;
Code: Select all
rowWidth = rowWidth - 30;
Kind regrads,
Fike