Check documentation for the latest version of dhtmlxSuite isListOptionEnabled DHTMLX Docs

isListOptionEnabled

checks whether a listed option is enabled

boolean isListOptionEnabled(string|number parentId,string|number optionId);
parentIdstring|numberthe id of a select button
optionIdstring|numberthe id of a listed option
booleantrue|false

Example

var isOptEn = myToolbar.isListOptionEnabled(parentId, optionId);

Back to top