/// <summary> /// Returns the JSON markup for the full context menu /// </summary> public string GetJSONContextMenu() { if (ShowContextMenu) { JTreeContextMenu menu = new JTreeContextMenu(); return(menu.RenderJSONMenu()); } else { return("{}"); } }
/// <summary> /// Returns the JSON markup for the full context menu /// </summary> public string GetJSONContextMenu() { if (ShowContextMenu) { JTreeContextMenu menu = new JTreeContextMenu(); return menu.RenderJSONMenu(); } else { return "{}"; } }