toolbarOptions: { reshapeVisible: false, cutVisible: false, mergeVisible: false }
Hi Everyone,
I was able to remove the point from the simple toolbar options. Here is the code:
myEditor.on("load", function()
{
var toolBarDiv= dom.byId("esri_dijit_editing_tools_Editing_0");
domStyle.set(toolBarDiv, "display", "none");
});
It will hide that tool from the editor tools. But i am still struggling to eliminate the selection options(Add To Selection, Subtract from Selection).
Please add this in the style tag and then you will be able to remove those two options from the dropdown.
#btnAddToSelection
{
display:none;
}
#btnSubtractFromSelection
{
display:none;
}