Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Custom states can be aplied to any akObject and it consist in a name and options. It's displaying a custom icon (set in options) and some specific style on the field.

If the EventOnCustomStateChange is set in designer, than everytime the custom state is changed, the event is triggered and you can see the action (set or clear) and the customState that had been added/removed.


Custom states attributes:

attributevalues
namethe name of the custom state
option
  • bubbleUp - make the custom state to also be visible on window-header. Can be set to true or false
  • icon - an unicode from a font-awesome icon (ex: f071)


Examples:

Getting a field:

var field1 = akioma.root.dynObject.getObject('offerheaderdata').getField('selfdesc')

Code Block
titleAdd a custom state with an alert icon
field1.controller.setCustomState('Alert1', {icon: 'f071'})


Code Block
titleRemove a custom state
field1.controller.clearCustomState('Alert1')


Code Block
titleAdd a custom state with bubbleUp
field1.controller.setCustomState('Alert1', {icon: 'f071', bubbleUp: true})