Searched refs:sortable (Results 1 - 12 of 12) sorted by relevance
| /yui3/src/datatable/assets/ |
| H A D | datatable-sort-core.css | 2 .yui3-datatable-sortable-column { 5 .yui3-datatable-sortable-column:focus, 6 .yui3-datatable-sortable-column:active {
|
| /yui3/src/datatable-deprecated/tests/ |
| H A D | datatable-sort-tests.js | 12 columnset: [{ key: 'a', sortable: true }], 35 columnset: [{ key: 'a', sortable: true }],
|
| /yui3/src/datatable-deprecated/tests/src/ |
| H A D | datatable-sort.js | 10 columnset: [{ key: 'a', sortable: true }], 33 columnset: [{ key: 'a', sortable: true }],
|
| /yui3/src/datatable/tests/ |
| H A D | datatable-sort-tests.js | 28 "test sortable values": function () { 36 Y.Assert.areSame('auto', table.get('sortable')); 38 config.sortable = false; 41 Y.Assert.isFalse(table.get('sortable')); 43 config.sortable = true; 46 Y.Assert.isTrue(table.get('sortable')); 48 config.sortable = 'auto'; 51 Y.Assert.areSame('auto', table.get('sortable')); 53 config.sortable = ['a', 'b']; 56 Y.ArrayAssert.itemsAreSame(['a', 'b'], table.get('sortable')); [all...] |
| /yui3/src/datatable/tests/src/ |
| H A D | datatable-sort.js | 26 "test sortable values": function () { 34 Y.Assert.areSame('auto', table.get('sortable')); 36 config.sortable = false; 39 Y.Assert.isFalse(table.get('sortable')); 41 config.sortable = true; 44 Y.Assert.isTrue(table.get('sortable')); 46 config.sortable = 'auto'; 49 Y.Assert.areSame('auto', table.get('sortable')); 51 config.sortable = ['a', 'b']; 54 Y.ArrayAssert.itemsAreSame(['a', 'b'], table.get('sortable')); [all...] |
| /yui3/src/datatable/js/ |
| H A D | sort.js | 34 enable UI triggered sorting, set the DataTable's `sortable` attribute to 41 sortable: true 47 Setting `sortable` to `true` will enable UI sorting for all columns. To enable 48 UI sorting for certain columns only, set `sortable` to an array of column keys, 49 or just add `sortable: true` to the respective column configuration objects. 50 This uses the default setting of `sortable: auto` for the DataTable instance. 56 { key: 'username', sortable: true }, 57 { key: 'name', sortable: true }, 58 { key: 'birthdate', sortable: true } 61 // sortable [all...] |
| /yui3/build/datatable-sort/ |
| H A D | datatable-sort-debug.js | 36 enable UI triggered sorting, set the DataTable's `sortable` attribute to 43 sortable: true 49 Setting `sortable` to `true` will enable UI sorting for all columns. To enable 50 UI sorting for certain columns only, set `sortable` to an array of column keys, 51 or just add `sortable: true` to the respective column configuration objects. 52 This uses the default setting of `sortable: auto` for the DataTable instance. 58 { key: 'username', sortable: true }, 59 { key: 'name', sortable: true }, 60 { key: 'birthdate', sortable: true } 63 // sortable [all...] |
| /yui3/src/datatable-deprecated/js/ |
| H A D | column.js | 152 sortable: {
|
| H A D | columnset.js | 259 if(column.get("sortable") && (child.sortable === undefined)) { 260 child.sortable = column.get("sortable");
|
| /yui3/src/datatable-deprecated/assets/ |
| H A D | datatable-base-deprecated-core.css | 33 /* sortable columns */ 35 .yui3-skin-sam thead .yui3-datatable-sortable {
|
| /yui3/build/datatable-base-deprecated/ |
| H A D | datatable-base-deprecated-debug.js | 191 sortable: { 662 if(column.get("sortable") && (child.sortable === undefined)) { 663 child.sortable = column.get("sortable");
|
| /yui3/src/datatable-deprecated/assets/skins/sam/ |
| H A D | datatable-base-deprecated-skin.css | 80 /* sortable columns */ 85 .yui3-skin-sam th.yui3-datatable-sortable .yui3-datatable-liner {
|
Completed in 59 milliseconds