You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/jsdoc-globals.js
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -262,7 +262,10 @@ var FancytreeOptions = {};
262
262
* @property {function} click `data.node` was clicked. `data.targetType` contains the region ("checkbox", "expander", "icon", "prefix", "title"). Return `false` to prevent default processing, i.e. activating, expanding, selecting, etc.
263
263
* @property {function} clickPaging `data.node` is a 'paging' status node and was activated. Use data.node.replaceWith() to load additional nodes.
264
264
* @property {function} collapse `data.node` was collapsed
265
-
* @property {function} create Widget was created (called only once, even if re-initialized).
265
+
* @property {function} create Widget was created.<br>
266
+
* Source data may *not* be loaded or rendered yet:
267
+
* see also the `init` event, which is fired later.<br>
268
+
* Note: called only once, but not when re-initialized.<br>
266
269
* @property {function} createNode Allow tweaking and binding, after node was created for the first time (NOTE: this event is only available as callback, but not for bind())
267
270
* @property {function} dblclick `data.node` was double-clicked. `data.targetType` contains the region ("checkbox", "expander", "icon", "prefix", "title"). Return `false` to prevent default processing, i.e. expanding, etc.
268
271
* @property {function} deactivate `data.node` was deactivated
@@ -275,7 +278,8 @@ var FancytreeOptions = {};
275
278
* @property {function} focusTree `data.tree` received keyboard focus
276
279
* @property {function} <del>iconClass</del> @deprecated use tree option `icon` instead.
277
280
* @property {function} init Widget was (re-)initialized.<br>
278
-
* Note: if ext-persist is used, see also the `restore` event.
281
+
* The tree widget was initialized, source data was loaded, and visible nodes are rendered.<br>
282
+
* Note: if ext-persist is used, see also the `restore` event, which is fired later.
279
283
* @property {function} keydown `data.node` received key. `event.which` contains the key. Return `false` to prevent default processing, i.e. navigation. Call `data.result = "preventNav";` to prevent navigation but still allow default handling inside embedded input controls.
* @property {function} lazyLoad `data.node` is a lazy node that is expanded for the first time. The new child data must be returned in the `data.result` property (see `source` option for available formats).
0 commit comments