Hello Survey JS team,
I want to hide the title for what's underline yellow :
And the icons only be shown.
Hello Survey JS team,
I want to hide the title for what's underline yellow :
And the icons only be shown.
Hello Amro,
You can implement the creator.onDefineElementMenuItems function and disable the IAction.showTitle option for required actions.
Please let me know if you require further assistance.
Hi Amro,
Thank you for the update. Please consider this code:
JavaScriptcreator.onDefineElementMenuItems.add((sender, options) => {
options.items.forEach((item) => {
if (item.id === "duplicate") {
item.showTitle = false;
}
});
});
Drop me a line if you have more questions.