VanillaInspectorOptions
Options for the VanillaInspector, an instance of Inspector that uses VisuallyJs's default templating mechanism to render elements.
| Name | Type | Description |
|---|---|---|
| afterUpdate? | () => any | Optional callback to invoke after an update has occurred. |
| autoCommit? | boolean | Whether or not to auto commit changes on blur/change events. Defaults to true. |
| cacheTemplates? | boolean | By default the inspector will cache found templates, keyed by the type of the object and its category (there is a separate cache for nodes, groups, edges and ports, and in each cache the key is the object's ). In some situations you may not want to cache the template, for instance if your template has dynamic data that depends on the object that is being inspected. If that's the case you can set this to false. |
| container | HTMLElement | The element into which the inspector is drawn. |
| context? | Record<string,any> | Optional context to also provide to the templates when rendering. This can be accessed via the prefix, forinstance |
| cssClass? | string | Optional css class(es) to set on the inspector - a space separated list. |
| doNotWriteBlankNewValues? | boolean | Defaults to true. With this setting, if an update is made that has one or more blank strings, the strings will only be written to objects that already had some value for the corresponding key. If some object has, say, no value stored against the key , then the inspector will not write a value of "" for that key into the vertex. The reasoning for this flag is that you cannot get a null value from a text field, so if some text field has no value written in it and then gets a blur event, the UI reports a value of "", ie an empty string. But this is likely not the user's intention, if the field was blank to begin with. |
| emptyTemplate? | string | Template to use in the inspector when there is nothing selected. By default an empty element is used. |
| filter? | (b:Base) => boolean | Optional filter you can use to instruct the inspector to ignore certain items. |
| getDefaultValue? | (d:ObjectData, key:string) => any | Optional callback used to retrieve a value for a specific property when it's not present in the object's data. |
| multipleSelections? | boolean | Whether or not to support multiple selections. Defaults to true. |
| showCloseButton? | boolean | Defaults to false. When true, the inspector will have a close button in the top right corner, which, when pressed, will clear the Toolkit's selection. |
| templateResolver | (obj:Base) => string | Resolves templates for a given object. |
| ui | BrowserUI | The UI to attach to. |