From b801affd9cd09557385a2fa113763d5619577872 Mon Sep 17 00:00:00 2001 From: RobAley Date: Thu, 21 Feb 2019 14:48:34 +0000 Subject: [PATCH] added onCreateMenu docs --- docs/api.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index ecebf41..42b410a 100644 --- a/docs/api.md +++ b/docs/api.md @@ -143,8 +143,17 @@ Constructs a new JSONEditor. } } ``` - + See also option `schema` for JSON schema validation. + +- `{function} onCreateMenu(items,path)` + + Customize context menus in tree mode. + + Sets a callback function to customize the context menu in tree mode. Each time the user clicks on the context menu button, an array of menu items is created. If this callback is set, the array is passed to this function along with the current path (if any). This function can customize any aspect of these menu items, including deleting them and/or adding new items. Each menu item is represented by an object, which may also contain a submenu array of items. See the source code of example 21 in the examples folder for more info on the format of the items and submenu objects. + + The function should return the final array of menu items to be displayed to the user. + - `{boolean} escapeUnicode`