Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

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 to test. Ex: selfdesc field from offerheaderdata form.

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

Add a custom state with an alert icon
field1.controller.setCustomState('Alert1', {icon: 'f071'})
Remove a custom state
field1.controller.clearCustomState('Alert1')
Add a custom state with bubbleUp
field1.controller.setCustomState('Alert1', {icon: 'f071', bubbleUp: true})
  • No labels