/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_tree_TreeSorter({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":null,"uses":[],"html":"
Files
Provides sorting of nodes in a Ext.tree.TreePanel. The TreeSorter automatically monitors events on the\nassociated TreePanel that might affect the tree's sort order (beforechildrenrendered, append, insert and textchange).\nExample usage:
new Ext.tree.TreeSorter(myTree, {\n folderSort: true,\n dir: \"desc\",\n sortType: function(value, node) {\n // sort by a custom, typed attribute:\n return parseInt(node.id, 10);\n }\n});\n
\n\ntrue for case-sensitive sort (defaults to false)
\ntrue for case-sensitive sort (defaults to false)
\nThe direction to sort (\"asc\" or \"desc,\" case-insensitive, defaults to \"asc\")
\nThe direction to sort (\"asc\" or \"desc,\" case-insensitive, defaults to \"asc\")
\nTrue to sort leaf nodes under non-leaf nodes (defaults to false)
\nTrue to sort leaf nodes under non-leaf nodes (defaults to false)
\nThe attribute used to determine leaf nodes when folderSort = true (defaults to \"leaf\")
\nThe attribute used to determine leaf nodes when folderSort = true (defaults to \"leaf\")
\nThe named attribute on the node to sort by (defaults to \"text\"). Note that this\nproperty is only used if no sortType function is specified, otherwise it is ignored.
\nA custom \"casting\" function used to convert node values before sorting. The function\nwill be called with a two parameters, the property value for the node and the Ext.tree.TreeNode being evaluated.\nIt is expected to return the node's sort value cast to the specific data type required for sorting. This could be used, for example, when\na node's text (or other attribute) should be sorted as a date or numeric value. See the class description for\nexample usage.
\n