If the width of the last browse column is 0, the options menu is not visible in the browse form.
Options menu not visible, because it's always attached to the last browse column: Fix nuForm.js, function nuAddEditTabs()
Now:
Code: Select all
for(var i = 0 ; i < w.browse_columns.length ; i++){
l = nuBrowseTitle(w.browse_columns, i, l);
}
Code: Select all
for(var i = 0 ; i < w.browse_columns.length ; i++){
l = nuBrowseTitle(w.browse_columns, i, l);
if (w.browse_columns[i].width != '0') {
p = i;
}
}
Code: Select all
nuOptions('nuBrowseTitle' + (w.browse_columns.length - 1), w.form_id, 'browse', w.global_access);
Code: Select all
nuOptions('nuBrowseTitle' + p, w.form_id, 'browse', w.global_access);
After applying the fix: