Skip to content
Snippets Groups Projects
CHANGELOG.md 28.3 KiB
Newer Older
  • Learn to ignore specific revisions
  • Laura Cappelli's avatar
    Laura Cappelli committed
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
    # 2.23.0-0 / Unreleased
      * **The external dependency on jQuery UI was removed**.
        A new library `jquery.fancytree-all-deps.min.js` is now added to the
        distribution. It includes all dependencies on jQuery UI, so the only
        remaining external dependency is jQuery.<br>
        Continue to use `jquery.fancytree-all.min.js` if jQuery UI is already
        included anyway.
    
      * **Refactored the select behavior**
        [details](https://github.com/mar10/fancytree/wiki/SpecSelect):
        <!-- [details](https://github.com/mar10/fancytree/wiki#selection-and-checkboxes) -->
        * BREAKING CHANGES:
          * The `hideCheckbox` option was removed. Use `checkbox: false` instead.<br>
            Note that the `<li class='hideCheckbox'>` is still parsed from input
            HTML and converted accordingly.
          * The optional modifier class `<div class='fancytree-radio'>` was removed.
            This class was used on the *container* to turn all checkbox items into
            radio buttons.<br>
            Instead, this class is now added to `<span class="fancytree-checkbox fancytree-radio">`.
            Use the `tree.checkox: "radio"` option to activate this for the whole tree.
          * The callback signature for the `tree.tooltip` option has changed to
            `tooltip(event, data)`
    
        * [Added] Allow control of selection status propagation with new options:
          `unselectable`, `unselectableIgnore`, `unselectableStatus`.
        * [Added] node option `radiogroup` enables single-select for child nodes
        * [Added] option `opts.noEvents` to `setSelected(flag, opts)`
        * [Improved] Option 'checkbox' can have the string value "radio" (only visual
          effect)
    
      * [Improved] `aria` option is now on by default
      * Use the new dynamic options pattern for
        `checkbox`, `icon`, `tooltip`, `unselectable`, `unselectableIgnore`,
        `unselectableStatus`.<br>
        See also <a href="https://github.com/mar10/fancytree/wiki#dynamic-options">dynamic options</a>.
      * [Added] New method `node.visitSiblings()`
      * [Added] #730 ext-persist option `expandOpts` is passed to setExpanded()
        Allows to suppress animation or event generation.
    
    # 2.22.5 / 2017-05-11
     * [Improved] #709 experimental ext-ariagrid
    
    # 2.22.4 / 2017-05-06
     * [Improved] #709 experimental ext-ariagrid
    
    # 2.22.3 / 2017-05-05
     * [Improved] #709 experimental ext-ariagrid
    
    # 2.22.2 / 2017-04-29
      * [Fixed] #729 Fix regression with addChild performance improvements (#708)
    
    # 2.22.1 / 2017-04-21
      * [Fixed] #722 Fix regression with addChild performance improvements (#708)
    
    # 2.22.0 / 2017-04-11
      * [Added] ext-dnd5 now part of standard distribution
      * [Added] #693 ext-dnd/dnd5: configurable drop marker offset
      * [Added] #616 ext-wide: configurable left padding
      * [Added] New method $.ui.fancytree.evalOption()
      * [Improved] #601 ext-filter: improve performance (don't render hidden nodes)
      * [Improved] ext-contextMenu: disable keyboard while popup is open and restore focus
      * [Improved] #701 ext-hotkeys: Prevent default behavior on hot key combination
      * [Improved] #708 speedup improvement for addChildren
      * [Fixed] #680 ext-dnd5: top level nodes not draggable
      * [Fixed] #681 ext-table: exception when a lazy node has `children: []`
      * [Fixed] #699 ext-dnd5: Icon remains after dnd is cancelled
      * [Fixed] #702 $.ui.fancytree.getNode(jQuery)' for jQuery v3.x
      * [Fixed] #706 Fix DND where fancytree-title span is not a direct child due to custom layouts
      * [Fixed] #712 When clicking in a scrolled tree for the first time, focus is not set properly
      * [Fixed] #716 ext-wide: animation 'jumps' (jQuery UI 1.12)
      * [Fixed] #717, #719 expand/collapse shows displaced child nodes when scrolled (jQuery UI 1.12)
      * Update demos to jQuery 3.2.1 / jQuery UI 1.12.1
    
    # 2.21.0 / 2017-01-15
      * [Added] New extension 'ext-dnd5' (beta) for native HTML5 drag'n'drop support
      * [Added] `rtl` option for right-to-left script support
      * [Added] Add $.ui.fancytree.overrideMethod()
      * [Added] hook `treeSetOption` allows extensions to update on option changes
      * [Changed] standard CSS no longer defines `overflow: auto` for the container.
        If the tree container has a fixed height, `overflow: auto` or `overflow: scroll`
        should be added to make it scrollable.
        (Otherwise this always would be the scroll parent for ext-dnd5.)
      * [Improved] better support for initializing from embedded JSON using the
        `data-type="json"` attribute
      * [Fixed] corner case of #658 when ext-edit is loaded, but inactive
      * [Fixed] #396 Don't load 'loading.gif' for glyph skins
      * [Fixed] #675 ext-table: node.render(false) puts first node at end
    
    # 2.20.0 / 2016-11-13
      * [Added] #419 `modifyChild` event. This event is also a good place to
        implement auto sorting (#559)
      * [Added] #419 node.triggerModifyChild() and node.triggerModify()
      * [Added] #595 add custom node filter to `generateFormElements()`
      * [Added] #610 `tree.tooltip` option allows automatic or custom tooltips
      * [Added] #620 improved tooltip escaping to allow newlines
      * [DEPRECATED] `removeNode` event. Listen for `modifyChild` with operation
        'remove' instead (which is fired on the parent)
      * [Improved] ThemeRoller theme
      * [Improved] ext-filter
        - #297 add filter option 'hideExpanders' to remove expanders if all child
          nodes are hidden by filter
        - Filter options and the `opts` argument of `filterNodes()` / `filterBranches()`
          have been unified
        - [Fixed] #230 themeroller theme compatible with ext-filter
        - [Fixed] #528 autoCollapse option blocks filter's autoExpand option
        - [Fixed] #529 Filter: Mark matching nodes even if parent was matched in branch mode
        - [Fixed] #643 Exceptions in ext-filter if expression contains special chars
        - [Fixed] #658 ext-filter does not work with ext-edit `editCreateNode()`
      * [Improved] #656 WAI-ARIA support
        - Set focus to first node on first tab-in
        - Support [home] and [end] keys
        - Set aria-activedescendant on container to active ID
        - Set aria-multiselectable on container if selectMode != 1
        - Set aria-treeitem, -selected, -expanded, on title span instead `<li>`
      * [Fixed] #576 `loadKeyPath()` sometimes gets the root wrong
      * [Fixed] #615 Drag & drop helper icons lose indentation with table extension
      * [Fixed] #632 Tabbing is not working if there is an anchor tag in treeview
      * [Fixed] #644 New nodes created with ext-edit, are hidden in filtered trees
      * [Fixed] #647 ext-table: tree.render(true) does not discard existing markup
      * [Fixed] #659 handling of function keys, when quicksearch is on
      * Use QUnit 2.0
    
    # 2.19.0 / 2016-08-11
      * [Added] #607 tree.enableUpdate() to temporarily disable rendering to improve
        performance on bulk updates
      * [Added] modifier class `.fancytree-connectors` to be set on container<br>
        Note: Experimental! Not required for skin-xp and not compatible with ext-table
      * [Added] #623 ext-edit: `data.originalEvent` is now passed to `beforeClose`
      * [Fixed] #604 Set `source` option does not update tree
      * [Fixed] #609 node.load(true); doesn't maintain expanded
      * [Fixed] #621 Cannot focus embedded input controls
      * [Improved] #611 Keyboard navigation honors autoScroll option
      * Extensions inherit main version number
    
    # 2.18.0 / 2016-05-02
      * [Added] #586 node.discardMarkup() (useful in  the `collapsed` event)
      * [Added] #171 new option `.escapeTitles`
      * [Added] new callback `.enhanceTitle()`
      * [Fixed] #515 Html tags included in filter results
      * [Fixed] #593 ext-dnd revert position fails for tables
    
    # 2.17.0 / 2016-04-11
      * [Added]  `node.addClass()`, `.removeClass()`, and `.toggleClass()`
      * [Added] ext-filter: matcher-callback for `tree.filterNodes()` may now return
        `"branch"` and `"skip"`
      * [Added] ext-filter: new option`nodata` allows to configure a status node for
        empty results
      * [Added] `digits` argument to `node.getIndexHier(separator, digits)`
      * [Added] tree option `.tabindex`, default is "0". Pass "" to resolve #577
      * [DEPRECATED] tree option `.tabbable`. Use `.tabindex` instead
      * [Added] New option `mode='firstChild'` for `node.moveTo()`
      * [Added] New option `digits=<int>` for `node.getIndexHier()`
      * [Fixed] ext-filter: branch mode honors `autoExpand: true`
      * [Fixed] #584: aria-labelledby ids not unique
      * Update to jQuery UI 1.11.4
    
    # 2.16.1 / 2016-03-18
      * [Added] ext-glyph: new icon for 'nodata' status nodes
      * [Fixed] #575 missing loading icon in non-bootstrap themes.<br>
        Glyph themes now display status images in icon span (was expander span before)
    
    # 2.16.0 / 2016-03-16
      * [Added] ext-clones: new method node.setRefKey(refKey)
      * [Added] modifier class `.fancytree-fade-expander` to be set on container
      * [Added] ext-dnd: `.dragExpand()` callback to prevent auto-expand
      * [Improved] load error reporting
      * [Improved] bootstrap theme icons and style (samples use bootstrap 3.3)
      * [Improved] status nodes don't have icons
      * [Improved] pass data argument to `source` callback
      * [Improved] Handle exceptions inside `postProcess`
      * [Improved] #568 ext-dnd: Auto-expanding of collapsed nodes should also work
        when dropping is not allowed
      * [Improved] #567 ext-dnd: fix revert position
      * [Improved] #565 ext-dnd: fix intermediate display of wrong icon (sending 'over' after 'enter')
      * [Fixed] #569 node.navigate does not return a Promise object
      * [Fixed] #563 `tree.reactivate(false)` sets fancytree-treefocus and `tree.reactivate(true)`
        doesn't set keyboard focus
      * [Fixed] #562 Node span tag leaks outside table cell
      * [Fixed] #526 tree.setFocus() does not set keyboard focus
      * Updated to jQuery 1.12.1
      * Updated grunt devDependencies
      * Add jQuery 3.0 beta to test suite
      * Added LICENSE.txt to dist
    
    # 2.15.0 / 2016-01-11
      * [Changed] Renamed class `fancytree-statusnode-wait` to `fancytree-statusnode-loading`
      * [Added] new event `renderStatusColumns`
      * [DEPRECATED] ext-table option `customStatus`. Use `renderStatusColumns` instead
      * [Added] new event `clickPaging`
      * [Added] new mode `nodata` for use with node.setStatus()
      * [Added] new method `node.addPagingNode()`
      * [Added] new method `node.replaceWith()`
      * [Added] new type 'paging' for `node.statusNodeType`
      * [Added] #542 new method `node.getSelectedNodes()`
      * [Added] Helper class `glyphicon-spin` to allow rotating loading icon with bootstrap
      * [Improved] #356: serialize load requests
      * [Improved] #538: Be more robust if site css defines custom li:before
      * [Improved] ext-table: Define table row templates in `<tbody>`
      * [Improved] ext-table: `<thead>` is now optional if `<tbody>` contains `<td>`s
    
    # 2.14.0 / 2015-12-19
      * [CHANGED] #519 Refactored custom icon configuration:<br>
        (see also the [theming tutorial](https://github.com/mar10/fancytree/wiki/TutorialTheming))
        * [Added] `options.icon` option/callback.<br>
          Valid values are true, false, a string containing a class name or image
          url, or a callback returning that.
        * [Changed] `node.icon` option. Valid values are true, false, or a string
          containing a class name or image url.<br>
          This option existed before, but was stored in the `node.data.icon` namespace,
          and did not accept class names.
        * [DEPRECATED] `options.iconClass` callback: use `options.icon` instead
        * [DEPRECATED] `options.icons`: use `options.icon` instead
        * [DEPRECATED] `node.data.iconclass` option: use `node.icon` instead
        * [DEPRECATED] `node.data.icon` option: use `node.icon` instead
      * [Added] `tree.clear()` method.
      * [Added] #520 ext-persist: new event `beforeRestore`
      * [Fixed] #533 table-ext: nodeSetExpanded triggers redundant events
    
    # 2.13.0 / 2015-11-16
      * [Changed] If a node is initalized as `lazy: true`, and `children: []`,
        treat it as 'loaded leaf node'.<br>
        This is consistent with a lazy node that has no children property at all (i.e.
        `undefined`). This would issue a lazyLoad event and a resopnse of `[]` would
        mark the node as leaf node.
      * [Added] new function $.ui.fancytree.getTree()
      * [Added] ext-filter methods node.isMatched() and tree.isFilterActive()
      * [Added] CSS for ext-childcounter badges is now part of the standard themes
      * [Added] ext-childcounter method node.updateCounter()`
      * [Fixed] #507 data-hideCheckbox="true"
      * [Fixed] #513 activeVisible option does not work on init
      * [Fixed] #516 ExtPersist requires cookie.js even when not using cookies
    
    # 2.12.0 / 2015-09-10
      * [Changed] Documented `iconClass` callback and changed signature from
        `iconClass(node)` to `iconClass(event, data)`
      * [Added] ext-dnd events `initHelper` and `updateHelper`
      * [Added] ext-dnd option `smartRevert`
      * [Added] #146 sample for multi-node drag'n'drop
      * [Added] Sample for modifier keys to control copy/move behavior while dragging
      * [Added] `highlight` and `fuzzy` options to ext-filter
      * [Added] `fireActivate` option to ext-persist (default: true)
      * [Added] #496 new methods tree.findFirst() / .findAll()
      * [Improved] clearFilter() performance #491
      * [Improved] dnd registers global handlers to cancel on ESC and mousedown
      * [Fixed] #475 Font color while editing node title with bootstrap skin
      * [Fixed] #484 Glyph plugin: Missing margin-left for span.fancytree-custom-icon
      * [Fixed] #486 node.render(true) moves the node to the end of the list
      * [Fixed] #489 `focusOnClick` option is ignored for tables if 'dnd' is listed after 'table' extension
      * [Fixed] #495 Double clicking on expander with lazy-load causes assertion error
    
    # 2.11.0 / 2015-07-26
      * [Changed] Adding `fancytree-plain` class to container (if not table), allowing for more efficient css
      * [Changed] #434: Use data-uris to inline loading.gif image
      * [Changed] #460: Use padding-left instead of margin-left for table indent
      * [Changed] #465: Add `node` argument to the `toDict()` callback
      * [Improved] Nicer bootstrap theme and added table to the example
      * [Improved] #464: ext-dnd supports ext-glyph
      * [Improved] #466: Add counter badges to ext-filter
      * [Fixed] Win8 theme jumpy hover effects
      * [Fixed] #411: ext-edit fails with ext-table, when edit was cancelled
      * [Fixed] #463: ext-table: render(deep) does not work
      * [Fixed] #470: Wide plugin not present in jquery.fancytree-all.min.js
    
    # 2.10.2 / 2015-07-02
      * [Fixed] Add `dist/skin-custom-1` sample (again)
      * [Fixed] #459 Don't collapse root folder when last node is removed
    
    # 2.10.1 / 2015-06-27
      * [Changed] Undo #340: Revert dist folder layout to v2.9.0, but add
        dist/skin-common.less
    
    # 2.10.0 / 2015-06-26 [YANKED]
      * [Changed] #340: New dist folder layout: moved skin-* folders into src/ folder
        (**Note:** this change was reverted in v2.10.1)
      * [Improved] Update to jQuery UI 1.11.4, jQuery 1.11.3
      * [Improved] #340: add `dist/skin-common.less` to fix theme imports
      * [Improved] #443 Support js-cookie (still compatible with jquery-cookie)
      * [Fixed] #415 selected and unselectable shows unchecked checkbox
      * [Fixed] #427 table + themeroller: apply color to TR
      * [Fixed] #442 filterBranches shall use opts to allow autoExpand
      * [Fixed] #445 enter key not handled correctly
      * [Fixed] #449 After deleting last child, parent node remains expanded
      * [Fixed] #452 destroy not removing nodes with ext-table
      * [Fixed] #457 Autoscroll fails with lazyloading returning empty list
    
    # 2.9.0 / 2015-04-19
      * [Changed] ext-filter: `tree.filterNodes(filter, opts)` now accept an `opts`
        object instead of `leavesOnly`
      * [Improved] #417 only raise exception about data being a string if dataType is "json"
      * [Added] #394 New option `autoExpand` for [ext-filter]
      * [Fixed] #402, #405 rare exception in dnd events
      * [Fixed] #420 nodeSetActive not returning promise
      * [Fixed] #270 Keyboard focus not working when using dnd extension
    
    # 2.8.1 / 2015-03-01
      * [Improved] generateFormElements() new argument `opts`, default: `{stopOnParents: true}`
      * [Fixed] #393 ext-table: checkboxColumnIdx not working
      * [Fixed] #397 ext-edit: Creating sub category fails
      * [Fixed] #403 generateFormElements() doesn't work with string args
    
    # 2.8.0 / 2015-02-08
      * [Changed] Deprecated ext-menu (was never officially supported, see http://localhost:8080/demo/index.html#sample-ext-menu.html)
      * [Improved] Bluring the widget will now blur the focused node too.
      * [Improved] Persistence will only set node focus if widget had focus (otherwise only activate the node).
      * [Improved] Set default focus on first keypress to active node (first node otherwise)
      * [Improved] #383 Accept [ECMAScript 6 Promise](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Promise) as source
      * [Added] `_superApply()` for hook handlers.
      * [Added] eventToString() supports mouse events
      * [Fixed] persistence for focus (when using non-cookie storage)
      * [Fixed] #391 Exception on autoscrolling filtered trees
    
    # 2.7.0 / 2014-12-21
      * [CHANGED] Dropped `fx` option. Use `toggleEffect` instead.
      * [CHANGED] 'win8' and 'bootstrap' skins where modified to highlight the
        title span instead of the node span, in order to be compatible with
        [ext-wide]. The original skins are available as 'skin-win8-n' and
        'skin-bootstrap-n' respectively.
      * [Added] ext-wide extension (experimental)
      * [Added] LESS files to distribution
      * [Added] Publish on [cdnjs](https://cdnjs.com/libraries/jquery.fancytree)
      * [Improved] tree.reactivate() returns a promise
      * [Fixed] #246 Gaps when filtering in hide mode (patch by @lefunque)
      * [Fixed] #287 wrong image on hovers
      * [Fixed] #368 Standard browser behavior prevented (e.g. zoom with Ctrl+'+'/'-')
      * [Fixed] #369 Suppress warning, when dropping top- on top-node
    
    # 2.6.0 / 2014-11-29
      * [Added] Option `focusOnSelect` to set focus when node is checked by a mouse
        click (default: false)
      * [Added] `restore` event, sent after ext-persist has restored the tree state
      * [Improved] #359 Better navigation performance when skipping hidden nodes
      * Publish on npm Registry
    
    # 2.5.0 / 2014-11-23
      * [CHANGED] [ext-persist] overrideSource option now defaults to true
      * [Added] [ext-filter] Option `autoApply` re-applies filter on lazy loading
        (on by default)
      * [Added] quicksearch: navigate to next node by typing the first letters
      * [Improved] [ext-dnd] Make draggable helper and parent configurable
      * [Improved] #153 Add class `fancytree-unselectable` to respective nodes and
        dimm unselectable checkboxes
      * [Improved] Update to jQuery 1.1.11, jQuery UI 1.11.2
      * [Improved] New mode 'firstChild' for node.addNode()
      * [Fixed] #324 Fix problem where minExpandLevel was not expanding root node
      * [Fixed] #300 dnd.focusOnClick for jQuery UI 1.11
      * [Fixed] #354 [ext-persist] with selectMode 3
    
    # 2.4.1 / 2014-09-23
      * [Fixed] Regression #323
    
    # 2.4.0 / 2014-09-21
      * [CHANGED] Renamed dist/jquery.fancytree-custom.min.js to jquery.fancytree-all.min.js
      * [CHANGED] ext-edit callbacks no longer pass `data.value` (use `data.input.val()` instead).
      * [Added] CDN support (http://www.jsdelivr.com/#!jquery.fancytree)
      * [Added] New method `node.visitAndLoad()`
      * [Added] New method `node.editCreateNode()` (ext-edit)
      * [Added] New method `node.isRootNode()`
      * [Added] New method `node.isTopLevel()`
      * [Added] New option `id` to override default tree id
      * [Added] New argument `stopOnParents` for tree.generateFormElements()
      * [Improved] #294 node.load() should resolve 'ok', if node is already loaded
      * [Improved] #293 minExpandLevel does not auto-expand
      * [Improved] #313 Allow HTML in tooltips
      * [Fixed] crash in scrollIntoView() when parent is `window`
      * [Fixed] #305 Checkbox doesn't show with Glyph + Table
      * [Fixed] #316 Fix hasChildren() when children = []
      * [Fixed] #237 ajax LoadError not updated in StatusNode with Table ext
      * [Fixed] #295 loadKeyPath with multiple paths
      * [DEPRECATED] node.isRoot(). Use node.isRootNode() instead
    
    # 2.3.0 / 2014-08-17
      * [CHANGED] renamed (undocumented) event 'loaderror' to 'loadError'
      * [Added] postProcess now allows to signal error conditions (so it becomes easy to handle custom ajax response formats)
      * [Added] node.setStatus()
      * [Added] ext-clones to the standard distribution.
      * [Improved] loadError allows to return `false` to prevent default handling
      * [Fixed] #258 Fix moveTo when moving a node to same parent
      * [Fixed] #257 Glyph expander sometimes disappears
    
    # 2.2.0 / 2014-06-28
      * [Added] Option dnd.focusOnClick sets focus to tree widget, even when dragging
        is enabled
      * [Added] node.info()
      * [Improved] #245 tree.generateInput() now returns data using PHPs array
        convention, i.e. by appending brackets to the name: 'ft_1[]'.
      * [Fixed] #250: Children lazy empty nodes remain checked when parent is
        unchecked with hierarchical multi-selection
      * [Fixed] #272 Navigation in filtered trees
    
    
    # 2.1.0 / 2014-05-29
      * [Added] #210: [ext-persist] optionally store information in sessionStorage or localStorage
      * [Added] #64 [ext-filter] filterBranches() will restrict display to sub-trees
      * [Added] New options 'scrollParent' and 'scrollOfs' are evaluated by node.scrollIntoView()
        (which is also called on expand). This allows autoScroll to work with
        [ext-table]: set scrollParent to `window` or a wrapper DIV with  overflow: auto
      * [Added] [ext-wide] use 100% wide selection bar (experimental)
      * [Added] $.ui.fancytree.debounce()
      * [Improved] [ext-columnview] css
      * [Improved] skin-win8 now includes the loading.gif as inline CSS for faster response
      * [Improved] Add 'fancytree-icon' class to icon IMG
      * [Improved] css v-align for checkboxes and icons
      * [Fixed] #217: persistence when node keys are numeric
      * [Fixed] #228: html in node title prevents click
      * [Fixed] #235: D'n'd helper is displaced, when window is scrolled
      * [Fixed] #241: fromDict() does not update node title
      * [Fixed] relative custom imagePath option
      * [DEPRECATED] [ext-filter] Use filterNodes() instead of applyFilter()
      * [DEPRECATED] [ext-filter] 'leavesOnly' option removed (see filterNodes())
    
    
    # 2.0.0 / 2014-05-01
      * [Added] [ext-clones] #213 New method Fancytree.changeRefKey()
    
    
    # 2.0.0-12 / 2014-04-29
      * [Added] /dist/src folder contains uncompressed extensions for bower
      * [Improved] cleanup
    
    
    # 2.0.0-11 / 2014-04-27
      * [Added] /dist/jquery.fancytree-custom.min.js with AMD support
      * [Added] #56: Allow to set special node.attributes from data-...
      * [Added] #191: Allow to set additional tree.data attributes from <ul data-...>
      * [Added] [ext-childcounter] #202: Allow lazy children count
      * [Improved] #192: Removed 'height: 100%' for container (was introduced to fix
         an IE 9 bug, that now should be solved by 'min-height: 0%')
      * [Improved] [ext-table] #93 renderColumns called for status nodes
        (added 'customStatus' option)
      * [Improved] [ext-dnd] #196 Make draggable/droppable options configurable
      * [Fixed] [ext-glyph] #194 Render noExpander icon from icon map for leaf nodes
      * [Fixed] #197: Allow special characters in tooltips
      * [Fixed] #68: renderStatus method doesn't render 'loading' status
      * [Fixed] #201: originalEvent not passed along to activate callback
      * [Fixed] [ext-glyph] compatible with ext-table
    
    
    # 2.0.0-10 / 2014-04-13
      * [Added] New method node.appendSibling()
      * [Improved] setExpanded resolves promise *after* scrollIntoView
      * [Improved] Allow to return false in lazyLoad for manual loading.
      * [Improved] [ext-table] trigger expand event *after* anPimations
      * [Improved] [ext-gridnav] skips empty and merged cells
      * [Improved] grunt build no longer depends on tabfix.py
      * [Fixed] selectMode: 1 + "selected": true looks buggy
    
    
    # 2.0.0-9 / 2014-04-02
      * [Added] New helper method $.ui.fancytree.escapeHtml().
      * [Added] [ext-clones] new method node.reRegister(key, refKey)
      * [Added] Support for bower.
      * [Added] dist/ folder to repository
      * [Improved] [ext-edit] handles `<`, `>`, ...
      * [Improved] [ext-table] node.render(force) trigger renderColumns event
      * [Fixed] [ext-table] #178 children are not displayed when filtering
    
    
    # 2.0.0-8 / 2014-04-01
      * [FEATURE] #18: load lazy nodes, if initialized as 'expanded'.
      * [FEATURE] #162: Optional parameter `noEvents` for node.setActive() and .setExpanded().
      * [CHANGE] Prefixed all Less variables with '@fancy-' and introduced '@fancy-image-dir'.
      * [CHANGE] 'loadChildren' event is now also triggered for initial tree load (before it was only triggered for lazy child nodes)
      * [BUGFIX] #117: line height too large when using doctype xhtml
      * [BUGFIX] #115: Fixed error when trying to drag table headers
      * [BUGFIX] #163: lazy load throws error if autoscroll: true and result is empty
      * [FEATURE] [ext-clones] (experimental) new extension that introduces
        `node.refKey`, which may occur multiple times in one tree (as opposed to `key`,
        which must be unique).
        New methods `node.isClone()`, `node.getCloneList()` and `tree.getNodesByRef()`.
        Optionally, clones are tagged wit the `fancytree-clone` class.
      * [FEATURE] New option 'defaultKey'. This calback allows to generate keys while loading.
      * build process creates /dist folder
      * "bower install fancytree" delivers dist folder
    
    
    # 2.0.0-7 / 2014-03-09
      * [BREAKING CHANGE] node.isStatusNode() is now a function (was a property before).
        Added new property `node.statusNodeType`.
      * [BREAKING CHANGE] Renamed ext-awesome to ext-glyph
      * [DEPRECATION] Deprecated event `lazyload`, use `lazyLoad` (upper case L) instead.
      * [DEPRECATION] Deprecated methods node.lazyLoad() and node.discard(). use load() and resetLazy() instead.
      * [FEATURE] Added node.isUndefined(), isLoaded(), resetLazy(), load(), resetLazy()
      * [FEATURE] [ext-persist] Added option `expandLazy` for recursive loading (still experimental).
      * [FEATURE] [ext-filter] 'mode: hide' now works with ext-table (still experimental).
      * [FEATURE] node.makeVisible() accepts options, scrolls into view, and returns a promise.
      * [FEATURE] Sample xxl and bootstrap themes.
      * [CHANGE] nodeRenderStatus() is now implicitly called by nodeRenderTitle().<br>
        This also means that now all markup and css classes are finshed, when `renderNode`
        is fired.
      * [CHANGE] Calling setExpanded() on a leaf node fires .done() (not .fail())
      * [CHANGE] Removing the last child node collapses the parent; lazy nodes become empty (not undefined).
    
    
    # 2.0.0-6 / 2014-02-08
    
      * [BREAKING CHANGE] Removed 'name' argument from `$.ui.fancytree.registerExtension()`
        (now the extension object requires a 'name' property)
      * [DEPRECATION]  Deprecated startEdit/endEdit to use editStart/editEnd
      * [FEATURE] New method `tree._requireExtension()`
      * [FEATURE] Fixed d'n'd for ext-table
      * [FEATURE] New option `titlesTabbable`
      * [FEATURE] New argument `opts` for setExpanded() and setActive()
      * [BUGFIX] ext-edit: fixed loosing focus and made chainable
      * [BUGFIX] ext-filter: fixed navigation for hidden nodes
      * Added browser test matrix (saucelabs)
    
    
    # 2.0.0-5 / 2013-12-23
    
      * [BREAKING CHANGE] Refactored drag'n'drop extension.
        For example `dnd.onDrop(node)` --> `dnd.dragDrop(node, data)`.
        See [[TutorialExtDnd]]
      * [BREAKING CHANGE] Renamed `rencercolumns` event to `renderColumns`
      * [BREAKING CHANGE] Renamed `fancytree-focused` class to `fancytree-treefocus` (container only)
      * [FEATURE] Experimental `ext-gridnav` implents key navigation for tables.
        Refactored keyboard handling. Keydown handlers are now bound to the container instead of document
        (Co-work with Koloto)
      * [FEATURE] Allow to return 'preventNav' in keydown event to prevent withput blocking keys in embedded input controls.
      * [FEATURE] New method `node.navigate()` to support custom keyboard handlers
      * [FEATURE] Refactored CSS style to use a common LESS template
      * [FEATURE] Improvement of lazy load errors handling (Koloto, issue #87)
      * [FEATURE] Allow to pass metadata with `source` on initialization
      * [FEATURE] The edit extension is now beta
      * [BUGFIX] Fixed BACKSPACE on top-level nodes
      * [BUGFIX] Fixed #71, #75, #90, #104, #105
      * Improved table render speed by 15%
      * `grunt dev` combines `grunt server` + `grunt watch` (trigger jshint and
        less on save)
    
    
    # 2.0.0-4 / 2013-10-14
    
      * Misc. fixes
    
    
    # 2.0.0-3
    
      * [BREAKING CHANGE] Changed extension syntax
      * [FEATURE] Edit extension (alpha)
    
    
    # 2.0.0-2 / 2013-09-15
    
      * [BREAKING CHANGE] Renamed `onCustomRender` to `renderTitle`.
        `renderTitle`, `renderNode` and `createNode` events are only triggered as options callback (not DOM events), for performance reasons.
      * [BREAKING CHANGE] Renamed `data.orgEvent` to `data.originalEvent`
      * [BREAKING CHANGE] Renamed events to camelCase as suggested by the jQuery style guide (`rendernnode` -> `renderNode`, ...)
      * See also [[WhatsNew]] since Dynatree 1.x in general.
    
    
    # 1.x
    
    * See [Dynatree](https://code.google.com/p/dynatree/)