.isInputAllowed()

Previous Next

Finds out if new input may be entered for this column. Use this, for example, for a column in an inserted record.

Returns a boolean.

Syntax

.isInputAllowed()

Function returns true if new input may be entered for this column, false otherwise.

 

Example

if (!updatable && $.udbMeta(this.dsId).cols(this.column).isInputAllowed() && 

     record.isInserted())

 updatable = true;