Hi Survey JS Team,
We are facing an issue when we try to categorize custom question types in survey creator while using angular.
I am using below properties to show the categories and make them expandable as provided in the documentation.
Codeconst categories = creator.toolbox.categories;
const othersIndex = categories.findIndex((category) => category.name === "Others");
const othersCategory = categories.splice(othersIndex, 1)[0];
categories.push(othersCategory);
creator.toolbox.allowExpandMultipleCategories = true;
creator.showSidebar = false;
creator.toolbox.forceCompact = false;
I want all my custom added questions to be shown into a separate collapsible toolbox item category. Is it possible in angular?
Thanks
P.S We are in final stage of purchasing the survey js license. Soon will be purchasing the license.