Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Clears display options that were previously specified for a record and then redraws the record.
Syntax
public void clearDisplayOption(Common record)
Run On
Client
Parameters
- record
Type: Common Table
The record to redraw.
Remarks
Display options are set by using the FormDataSource.displayOption method.
Examples
The following example redraws the first record in a data source.
public void run()
{
super();
sysRecordTmpTemplate_ds.clearDisplayOption(
sysRecordTmpTemplate_ds.getFirst());
}