Binding Condition
Widget binding conditions are very similar to server binding conditions. However, binding conditions in widgets may include two types of references:
- Standard references that point to context variables or functions, their fields or properties, and
- Component references that point to properties of widget components.
See widget binding expressions for more information about widget component references.
Widget Binding Condition Example
cell({env/value}, "altDown") && (cell({env/value}, "keyCode") == 'A')
- this expression will trigger a binding those activator is key typed event only if Alt-A key combination was pressed.
Was this page helpful?