Skip to content

Commit

Permalink
DataGrid/TreeList - implementation of sticky columns (part 1) (#27998)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alyar666 authored Sep 5, 2024
1 parent f789088 commit 22ff217
Show file tree
Hide file tree
Showing 1,420 changed files with 2,073 additions and 98 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/testcafe_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,11 @@ jobs:
{ componentFolder: "common", name: "common - material", theme: 'material.blue.light' },
{ componentFolder: "common", name: "common - fluent", theme: 'fluent.blue.light' },
{ componentFolder: "treeList", name: "treeList", concurrency: 1 },
{ componentFolder: "dataGrid", name: "dataGrid (1/2)", indices: "1/2" },
{ componentFolder: "dataGrid", name: "dataGrid (2/2)", indices: "2/2" },
{ componentFolder: "dataGrid", name: "dataGrid (1/5)", indices: "1/5" },
{ componentFolder: "dataGrid", name: "dataGrid (2/5)", indices: "2/5" },
{ componentFolder: "dataGrid", name: "dataGrid (3/5)", indices: "3/5" },
{ componentFolder: "dataGrid", name: "dataGrid (4/5)", indices: "4/5" },
{ componentFolder: "dataGrid", name: "dataGrid (5/5)", indices: "5/5" },
{ componentFolder: "pivotGrid", name: "pivotGrid", concurrency: 1 },
{ componentFolder: "pivotGrid", name: "pivotGrid - material", theme: 'material.blue.light', concurrency: 1 },
{ componentFolder: "pivotGrid", name: "pivotGrid - fluent", theme: 'fluent.blue.light', concurrency: 1 },
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/demos/testing/etalons/DataGrid-ColumnCustomization.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/demos/testing/etalons/TreeList-ColumnFixing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 5 additions & 2 deletions e2e/testcafe-devextreme/docker/run-testcafe.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ const parseArgs = require('minimist');

const matrix = [
{ componentFolder: 'treeList', name: 'treeList', concurrency: 1 },
{ componentFolder: 'dataGrid', name: 'dataGrid (1/2)', indices: '1/2' },
{ componentFolder: 'dataGrid', name: 'dataGrid (2/2)', indices: '2/2' },
{ componentFolder: 'dataGrid', name: 'dataGrid (1/5)', indices: '1/5' },
{ componentFolder: 'dataGrid', name: 'dataGrid (2/5)', indices: '2/5' },
{ componentFolder: 'dataGrid', name: 'dataGrid (3/5)', indices: '3/5' },
{ componentFolder: 'dataGrid', name: 'dataGrid (4/5)', indices: '4/5' },
{ componentFolder: 'dataGrid', name: 'dataGrid (5/5)', indices: '5/5' },
{ componentFolder: 'scheduler', name: 'scheduler (1/5)', indices: '1/5' },
{ componentFolder: 'scheduler', name: 'scheduler (2/5)', indices: '2/5' },
{ componentFolder: 'scheduler', name: 'scheduler (3/5)', indices: '3/5' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4751,6 +4751,10 @@ test('DataGrid input cell should not put tabindex to incorrect element while on
mode: 'form',
allowAdding: true,
},
columnFixing: {
// @ts-expect-error private option
legacyMode: true,
},
columns: [
'Calculation',
'CalculationType',
Expand Down Expand Up @@ -4795,6 +4799,8 @@ test('Cancel button in the last column cannot be focused via the Tab key (T12489
},
columnFixing: {
enabled: true,
// @ts-expect-error private option
legacyMode: true,
},
columns: [
'FirstName',
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 22ff217

Please sign in to comment.