You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there is a need to add a new question type for internal needs that you don't need to see in the Creator Toolbox, then you have to define all items for Toolbox to make sure this new question type is not in the Toolbox.
To avoid it a third parameter, showInToolbox, into the registerElement function is added. public registerElement(elementType: string, elementCreator: (name: string) => IElement, showInToolbox: boolean = true): void;
The text was updated successfully, but these errors were encountered:
If there is a need to add a new question type for internal needs that you don't need to see in the Creator Toolbox, then you have to define all items for Toolbox to make sure this new question type is not in the Toolbox.
To avoid it a third parameter,
showInToolbox
, into theregisterElement
function is added.public registerElement(elementType: string, elementCreator: (name: string) => IElement, showInToolbox: boolean = true): void;
The text was updated successfully, but these errors were encountered: