FormDataSource.clearDisplayOption Method

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

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()); 
}

See Also

FormDataSource Class

FormDataSource.displayOption Method