
How can i do that?
Code: Select all
var designer = new Stimulsoft.Designer.StiDesigner(options, "StiDesigner", false);
designer.renderHtml("content");
var dictionaryPanel = designer.jsObject.options.dictionaryPanel;
dictionaryPanel.toolBar.controls["Actions"].style.display = "none";
dictionaryPanel.toolBar.controls["NewItem"].style.display = "none";
//if you want to hide context menu for dictionary panel
dictionaryPanel.onmouseup = function (event) {
return false;
}