Please enable JavaScript to view this site.

Process Designer

Navigation: Javascript API > User dialog functions > Subtable view functions > Properties > Change properties

jr_show_subtable_field(subtable, rowId, fieldname)

Scroll Prev Top Next More

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 the dialog element

This function does not offer any return values.

Example for a subtable view:

showFields : function () {

        

        var rowIds = jr_get_subtable_row_ids('name_subtable_sv');

        

        rowIds.forEach(function (rowId) {

            jr_show_subtable_field('name_subtable_sv', rowId, 'text1');

        });

 }