What is Incisor?
Tutorials
Key Concepts
Reddit
Stack Overflow
Deprecation Schedule

UiKeyboardNavigable()

Object housing functionality that enables for this SceneObject to be accessible via keyboard navigation. Keyboard navigation enables the end-user to press the arrow keys, tab, space, and enter keys to outline and trigger any 'uiKeyboardNavigable' SceneObjects within a UiKeyboardNavigator-enabled parent that is currently 'in focus' according to 'nc.singularFocusObject'. SceneObjects have a member named "uiKeyboardNavigable", which defaults to undefined, but can be enabled, by calling 'SceneObject.configureUiKeyboardNavigable()'. [NON-INSTANTIABLE] [REQUIREMENT: optional code module - 'extendedUi']

new UiKeyboardNavigable()

MEMBERS

anyKeyTriggers :boolean

Flag determining if any key triggers the currently outlined UiKeyboardNavigable item. Standard UiKeyboardNavigable items are triggered by the "Enter" key and "Spacebar" key, when this flag is true, any key will trigger. Since the triggering keyboard event is sent through to the UiKeyboardNavigable item's 'trigger' callback, further costumizations can be added to the triggering key within the item itself (for example certain keys can be ignored etc...).

Default Value:
  • false

defaultOutlined :SceneObject

Optional SceneObject that will automatically be outlined the first time the owner of this UiKeyboardNavigation becomes the 'singularFocusObject'.

inheritedTypes :object

Dictionary object listing all of the types this object is compatible with.

type :string

Type identifier.

METHODS

addSetOutlineCallback(callbackOwner, callbackName)

Adds a callback that occurs whenever this UiKeyboardNavigable item is in need of outlining or unoutlining. A boolean indicating the outline status is sent to the callback as its first parameter.

Parameters:
Name Type Attributes Default Description
callbackOwner object    

The object owning the callback function that occurs whenever this UiKeyboardNavigable item is in need of outlining or unoutlining.

callbackName string    

The name of the callback function that occurs whenever this UiKeyboardNavigable item is in need of outlining or unoutlining.

addTriggerCallback(callbackOwner, callbackName)

Adds a callback that occurs whenever this UiKeyboardNavigable item triggered via the enter key or the space bar. The triggering browser-generated event is sent to the callback as its first parameter.

Parameters:
Name Type Attributes Default Description
callbackOwner object    

The object owning the callback function that occurs whenever this UiKeyboardNavigable item triggered via the enter key or the space bar.

callbackName string    

The name of the callback function that occurs whenever this UiKeyboardNavigable item triggered via the enter key or the space bar.

dispose()

Disposes this UiKeyboardNavigable, disabling keyboard navigation for the SceneObject owning it, and freeing object for garbage collection.

removeSetOutlineCallback(callbackOwner, callbackName)

Removes the given setOutline callback.

Parameters:
Name Type Attributes Default Description
callbackOwner object    

The object owning the callback to be removed.

callbackName string    

The name of the callback to be removed.

removeTriggerCallback(callbackOwner, callbackName)

Removes the given trigger callback.

Parameters:
Name Type Attributes Default Description
callbackOwner object    

The object owning the callback to be removed.

callbackName string    

The name of the callback to be removed.