Searched refs:sortable (Results 1 - 12 of 12) sorted by relevance

/yui3/src/datatable/assets/
H A Ddatatable-sort-core.css2 .yui3-datatable-sortable-column {
5 .yui3-datatable-sortable-column:focus,
6 .yui3-datatable-sortable-column:active {
/yui3/src/datatable-deprecated/tests/
H A Ddatatable-sort-tests.js12 columnset: [{ key: 'a', sortable: true }],
35 columnset: [{ key: 'a', sortable: true }],
/yui3/src/datatable-deprecated/tests/src/
H A Ddatatable-sort.js10 columnset: [{ key: 'a', sortable: true }],
33 columnset: [{ key: 'a', sortable: true }],
/yui3/src/datatable/tests/
H A Ddatatable-sort-tests.js28 "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 Ddatatable-sort.js26 "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 Dsort.js34 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 Ddatatable-sort-debug.js36 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 Dcolumn.js152 sortable: {
H A Dcolumnset.js259 if(column.get("sortable") && (child.sortable === undefined)) {
260 child.sortable = column.get("sortable");
/yui3/src/datatable-deprecated/assets/
H A Ddatatable-base-deprecated-core.css33 /* sortable columns */
35 .yui3-skin-sam thead .yui3-datatable-sortable {
/yui3/build/datatable-base-deprecated/
H A Ddatatable-base-deprecated-debug.js191 sortable: {
662 if(column.get("sortable") && (child.sortable === undefined)) {
663 child.sortable = column.get("sortable");
/yui3/src/datatable-deprecated/assets/skins/sam/
H A Ddatatable-base-deprecated-skin.css80 /* sortable columns */
85 .yui3-skin-sam th.yui3-datatable-sortable .yui3-datatable-liner {

Completed in 20 milliseconds