appendTitle (title)

Appends text to the original panel title defined in AXVW.

Parameters:

  • title (String): localized title text;


Example:

Append row data to the grid panel title and refresh the grid:

var record = row.getRecord();
this.userName = record.getValue('afm_users.user_name');
this.userProcessGrid.appendTitle(this.userName);
this.userProcessGrid.refresh(record.toRestriction());