This function hides one field of the indicated line in the subtable view.
Pleases note: This function is only available for the JobRouter App.
Parameter |
Type |
Description |
|---|---|---|
subtableViewName |
string |
Name of the subtable view |
rowId |
int |
Line ID |
fieldname |
string |
Name of dialog element |
This function does not offer any return values.
Example for a subtable view:
hideFields : function () {
var rowIds = jr_get_subtable_row_ids('name_subtable_sv');
rowIds.forEach(function (rowId) {
jr_hide_subtable_field('name_subtable_sv', rowId, 'text1');
});
}