.isInputAllowed() |
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
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; |