For each field added to a list type, an element of the list has a field value. This value and a corresponding proxy can be accessed via the API. Depending on the field type, different methods are available on the proxy property.
Possible field types include text (single-, multiline, rich texts, etc.), number, flag, color, icon, date, rating, button/action, custom html, charts, or list item selection and lists — amongst others. See the API Docs for all field types below.
Text Field
this.prop
| Prop Field ValueGet or set the string value of text field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Multiline Text Field
this.prop
| Prop Field ValueGet or set the string value of multiline text field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Tags Field
this.prop
| Prop Field ValueGet or set the string value of tags field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.contains(tag)
| ContainsIs the given tag contained in the tags setex. this.prop_.contains('important')
this.prop_.add(tag)
| AddIs the given tag contained in the tags setex. this.prop_.add('important')
this.prop_.remove(tag)
| RemoveIs the given tag contained in the tags setex. this.prop_.remove('important')
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Rich Text Field
this.prop
| Prop Field ValueGet or set the string value of rich text field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Paragraph Field
this.prop
| Prop Field ValueGet or set the string value of paragraph field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Block-Based Rich Text Field
this.prop
| Prop Field ValueGet or set the markdown value of markdown field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Flag (Checkbox) Field
this.prop
| Prop Field ValueGet or set the boolean value of flag field Propex. if (this.prop) { … }
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Toggle Button (Checkbox) Field
this.prop
| Prop Field ValueGet or set the boolean value of switch field Propex. if (this.prop) { … }
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Integer Number Field
this.prop
| Prop Field ValueGet or set the integer value of integer number field Propex. this.prop++
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.undoable(message)
| UndoableThe next method call like add
will show an undo-option-dialog to the userex. this.prop_.undoable('Added 1').add(1)
this.prop_.add(number)
| AddAdds the given number to this fieldex. this.prop_.add(1)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Decimal Number Field
this.prop
| Prop Field ValueGet or set the double value of decimal number field Propex. this.prop++
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.undoable(message)
| UndoableThe next method call like add
will show an undo-option-dialog to the userex. this.prop_.undoable('Added 1').add(1)
this.prop_.add(number)
| AddAdds the given number to this fieldex. this.prop_.add(1)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Color Selection (Secondary Color) Field
this.prop
| Prop Field ValueGet or set the string value of color field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Item Color (Primary Color) Field
this.prop
| Prop Field ValueGet or set the string value of object color field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Icon Selection (Secondary Icon) Field
this.prop
| Prop Field ValueGet or set the string value of icon field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Item Icon (Primary Icon) Field
this.prop
| Prop Field ValueGet or set the string value of object icon field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Date Field
this.prop
| Prop Field ValueGet or set the date value of date field Propex. let prop = this.prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.undoable(message)
| UndoableThe next method call like add
will show an undo-option-dialog to the userex. this.prop_.undoable('Added 7 days').add(7)
this.prop_.add(days)
| AddAdds the given number of days to this date fieldex. this.prop_.add(7)
this.prop_.today()
| TodaySet the date to todayex. this.prop_.today()
this.prop_.isToday()
| Is TodayIs the date todayex. this.prop_.isToday()
this.prop_.toDate(year, month, date)
| To DateSet the given dateex. this.prop_.toDate(2020, 10, 1)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Time Field
this.prop
| Prop Field ValueGet or set the date value of time field Propex. let prop = this.prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.now(round)
| NowSet the time to nowex. this.prop_.now(true)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Time And Date Field
this.prop
| Prop Field ValueGet or set the date value of time and date field Propex. let prop = this.prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.undoable(message)
| UndoableThe next method call like add
will show an undo-option-dialog to the userex. this.prop_.undoable('Added 7 days').add(7)
this.prop_.add(days)
| AddAdds the given number of days to this date fieldex. this.prop_.add(7)
this.prop_.today()
| TodaySet the date to todayex. this.prop_.today()
this.prop_.isToday()
| Is TodayIs the date todayex. this.prop_.isToday()
this.prop_.toDate(year, month, date)
| To DateSet the given dateex. this.prop_.toDate(2020, 10, 1)
this.prop_.now()
| NowSet the date to today and the time to nowex. this.prop_.now()
this.prop_.setDateAndTime(date, time)
| Set Date And TimeSet the date to today and the time to the given valuesex. this.prop_.setDateAndTime(new Date(), new Date())
this.prop_.isToday()
| Is TodayIs the date todayex. this.prop_.isToday()
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
this.prop
| Prop Field ValueGet or set the integer value of rating field Propex. this.prop++
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Main Action Button Field
this.prop_
| Prop Field ProxyConfigure actions by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure actions by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.async
| AsyncThe action will be executed asynchronously in a worker thread if set to true
ex. this.prop_.async = true
or … = false
this.prop_.enabled
| EnabledEnabled/disable this actionex. this.prop_.enabled = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.active
| ActiveActivate this action (sets enabled
and visible
at the same time)ex. this.prop_.active = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.call()
| CallTrigger execution of this actionex. this.prop_.call()
this.prop_.import()
| ImportImport the given script into the execution contextex. this.prop_.import()
this.prop_.icon
| IconSet an icon for this actionex. this.prop_.icon = 'Check Square'
, … = 'Building'
, …
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Inline Button Field
this.prop_
| Prop Field ProxyConfigure actions by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure actions by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.async
| AsyncThe action will be executed asynchronously in a worker thread if set to true
ex. this.prop_.async = true
or … = false
this.prop_.enabled
| EnabledEnabled/disable this actionex. this.prop_.enabled = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.active
| ActiveActivate this action (sets enabled
and visible
at the same time)ex. this.prop_.active = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.call()
| CallTrigger execution of this actionex. this.prop_.call()
this.prop_.import()
| ImportImport the given script into the execution contextex. this.prop_.import()
this.prop_.icon
| IconSet an icon for this actionex. this.prop_.icon = 'Check Square'
, … = 'Building'
, …
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Method Field
this.prop
| Prop Field ValueGet or set the generic (any type) value of method field Prop
this.prop_
| Prop Field ProxyConfigure actions by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure actions by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.async
| AsyncThe action will be executed asynchronously in a worker thread if set to true
ex. this.prop_.async = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.active
| ActiveActivate this action (sets enabled
and visible
at the same time)ex. this.prop_.active = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.call()
| CallTrigger execution of this actionex. this.prop_.call()
this.prop_.import()
| ImportImport the given script into the execution contextex. this.prop_.import()
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Function Field
this.prop
| Prop Field ValueGet or set the generic (any type) value of function field Prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.async
| AsyncThe action will be executed asynchronously in a worker thread if set to true
ex. this.prop_.async = true
or … = false
this.prop_.async
| AsyncThe action will be executed asynchronously in a worker thread if set to true
ex. this.prop_.async = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.execute(args)
| ExecuteExecute this function with the given argumentsex. let result = this.prop_.execute(Object...)
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Script (Javascript Code Editor) Field
this.prop
| Prop Field ValueGet or set the string value of script field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.active
| ActiveActivate this action (sets enabled
and visible
at the same time)ex. this.prop_.active = true
or … = false
this.prop_.ontoken
Set a listener on token selection changesex. this.prop_.ontoken = (obj, val) => { types.toast(obj + ':' + val); }
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.call()
| CallTrigger execution of this actionex. this.prop_.call()
this.prop_.import()
| ImportImport the given script into the execution contextex. this.prop_.import()
this.prop_.play()
| PlayExecute this script in a tutorial player windowex. this.prop_.play()
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Stylesheet (CSS Code Editor) Field
this.prop
| Prop Field ValueGet or set the string value of stylesheet field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.ontoken
Set a listener on token selection changesex. this.prop_.ontoken = (obj, val) => { types.toast(obj + ':' + val); }
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Script Player Field
this.prop
| Prop Field ValueGet or set the string value of script player field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.active
| ActiveActivate this action (sets enabled
and visible
at the same time)ex. this.prop_.active = true
or … = false
this.prop_.ontoken
Set a listener on token selection changesex. this.prop_.ontoken = (obj, val) => { types.toast(obj + ':' + val); }
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.call()
| CallTrigger execution of this actionex. this.prop_.call()
this.prop_.import()
| ImportImport the given script into the execution contextex. this.prop_.import()
this.prop_.play()
| PlayExecute this script in a tutorial player windowex. this.prop_.play()
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
HTML Markup Field
this.prop
| Prop Field ValueGet or set the generic (any type) value of html field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.update()
| UpdateUpdate the html fieldex. this.prop_.update()
this.prop_.inc(properties)
| IncIncrements the json property number resolved via the given property pathex. this.prop_.inc(null)
this.prop_.dec(properties)
| DecDecrements the json property number resolved via the given property pathex. this.prop_.dec(null)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Hyperlink Field
this.prop
| Prop Field ValueGet or set the hyperlink value of hyperlink field Prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Embedded Media Field
this.prop
| Prop Field ValueGet or set the embedded media value of embedded media field Prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Dynamic Field Field
this.prop
| Prop Field ValueGet or set the generic (any type) value of dynamic field field Propex. field.type = macro.TEXT
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.update()
| UpdateUpdate the html fieldex. this.prop_.update()
this.prop_.inc(properties)
| IncIncrements the json property number resolved via the given property pathex. this.prop_.inc(null)
this.prop_.dec(properties)
| DecDecrements the json property number resolved via the given property pathex. this.prop_.dec(null)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
🪄
AI Wizard Field
🪄this.prop
| Prop Field ValueGet or set the generic (any type) value of ai assistant field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
🤖
Embeddings Field
🤖this.prop
| Prop Field ValueGet or set the generic (any type) value of embeddings field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
this.prop
| Prop Field ValueGet or set the generic (any type) value of chart field Propex. chart.type = 'bar'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.type
| TypeThe type of the chart, one of 'bar'
, 'pie'
, or 'line'
ex. this.prop_.type = 'pie'
this.prop_.listType
| List TypeThe list the chart will be based on
this.prop_.field
| FieldThe field that is charted
this.prop_.group
| GroupValues will be grouped by the value of this field
this.prop_.width
| WidthThe preferred width for the chart (optional)
this.prop_.height
| HeightThe preferred height for the chart (240px
if not specified)
this.prop_.type
| TypeThe type of the dynamic field, one of macro.TEXT
, macro.FLAG
, etc.ex. this.prop_.type = macro.TEXT
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.update()
| UpdateUpdate the html fieldex. this.prop_.update()
this.prop_.inc(properties)
| IncIncrements the json property number resolved via the given property pathex. this.prop_.inc(null)
this.prop_.dec(properties)
| DecDecrements the json property number resolved via the given property pathex. this.prop_.dec(null)
this.prop_.update()
| UpdateUpdate the chartex. this.prop_.update()
this.prop_.update()
| UpdateUpdate the chartex. this.prop_.update()
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
this.prop_.filterBy(field, value)
| Filter BySet a filter for this chart, all items where the denoted field shows another value than the given value will be excluded from the chartex. this.prop_.filterBy(this.closed_, false)
Item Selection (N:1 Relationship) Field
this.prop
| Prop Field ValueGet or set the item selection value of selection field Propex. let prop = this.prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Item List (N:1 Relationship) Field
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.creatable
| CreatableShould the list support inline create (default: true
)
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.size
| SizeGet the number of items in this list
this.prop_.maxSize
| Max SizeSet the maximum number of items in this list that are displayed
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.forEach(operation)
| For EachApply the given operation to all items of this listex. this.prop_.forEach(o => o.pinned = o.count > 0)
this.prop_.add(element)
| AddAdd the given item to this listex. this.prop_.add(o)
this.prop_.remove(element)
| RemoveRemove the given item from this listex. this.prop_.remove(o)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
this.prop_.filterBy(field, value)
| Filter BySet a filter for this list view, all items where the denoted field shows another value than the given value will be excluded from this viewex. this.prop_.filterBy(this.closed_, false)
Item List (N:M Relationship) Field
this.prop
| Prop Field ValueGet or set the item list value of object list field Prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.creatable
| CreatableShould the list support inline create (default: true
)
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.size
| SizeGet the number of items in this list
this.prop_.maxSize
| Max SizeSet the maximum number of items in this list that are displayed
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.forEach(operation)
| For EachApply the given operation to all items of this listex. this.prop_.forEach(o => o.pinned = o.count > 0)
this.prop_.add(element)
| AddAdd the given item to this listex. this.prop_.add(o)
this.prop_.remove(element)
| RemoveRemove the given item from this listex. this.prop_.remove(o)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
this.prop_.filterBy(field, value)
| Filter BySet a filter for this list view, all items where the denoted field shows another value than the given value will be excluded from this viewex. this.prop_.filterBy(this.closed_, false)
Multi-Selection (N:M Relationship) Field
this.prop
| Prop Field ValueGet or set the multi selection value of multi selection field Prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Type List Field
this.prop
| Prop Field ValueGet or set the type list value of type list field Prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Type Editor Field
this.prop
| Prop Field ValueGet or set the type selection value of type editor field Propex. let prop = this.prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Theme Selection Field
this.prop
| Prop Field ValueGet or set the string value of theme selection field Propex. console.log('Changed Prop to ' + this.prop)
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Section Field
this.prop
| Prop Field ValueGet or set the generic (any type) value of section field Prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.visible = true
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Step Field
this.prop
| Prop Field ValueGet or set the string value of step field Prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.formStyle = 'background: lightgray'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.completed
| CompletedHas this step been completed?ex. this.prop_.completed = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'
Plugin Field
this.prop
| Prop Field ValueGet or set the generic (any type) value of plugin field Prop
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_
| Prop Field ProxyConfigure fields by setting properties like visibility or CSS styleex. this.prop_.listStyle = 'background: #FFEEAA'
this.prop_.editable
| EditableBy setting this flag the field can be set to editable or read-onlyex. this.prop_.editable = true
or … = false
this.prop_.visible
| VisibleShow/hide this fieldex. this.prop_.visible = true
or … = false
this.prop_.persistent
| PersistentPersist the value of this fieldex. this.prop_.persistent = true
or … = false
this.prop_.compute(proxiedField, modifierField, multiplierField)
| ComputeIf set, then this field doesn't have its own value, it just shows the value of the given fieldex. this.prop_.compute(this.value_, this.value_, this.factor_)
this.prop_.style
| StyleConvenience methods for customizing view stylesex. this.prop_.style.background = '#ffe'