Ribbon.UseIntellisense

Syntax

UseIntellisense: Boolean

Description

The UseIntellisense property determines whether there are tool ribbon commands.

Comments

Available values:

Use the setUseIntellisense method to set the property value from JSON, and the getUseIntellisense method to return the property value.

Example

To execute the example, the page must contain the Ribbon component named "ribbon" (see Example of Positioning the Ribbon Component from JSON). The example is executed in the browser console. Display the text box for quick launch of operations

// Display text box for quick launch of operations
ribbon.setUseIntellisense(true);

After the text "Cop" is entered into the text box the menu containing suggested operations opens:

Refresh operation search results:

// Refresh operation search results
ribbon.updateAutoComplete();

Operation search results are refreshed.

See also:

Ribbon