Skip to content

Commit 8421c1c

Browse files
author
pipeline
committed
feature(EJ2-3757): Virtual scrolling sample added.
1 parent d0560dd commit 8421c1c

12 files changed

+137
-91
lines changed

src/grid/columntemplate-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/grid/columntemplate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ this.default = (): void => {
1212
columns: [
1313
{
1414
headerText: 'Employee Image', textAlign: 'center',
15-
template: '#template', width: 150
15+
template: '#template', width: 180
1616
},
1717
{ field: 'EmployeeID', headerText: 'Employee ID', textAlign: 'right', width: 125 },
1818
{ field: 'FirstName', headerText: 'Name', width: 120 },

src/grid/gridlines-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/grid/gridlines.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ this.default = (): void => {
1212
dataSource: employeeData,
1313
gridLines: 'default',
1414
columns: [
15-
{ field: 'EmployeeID', headerText: 'Employee ID', textAlign: 'right', width: 125 },
15+
{ field: 'EmployeeID', headerText: 'Employee ID', textAlign: 'right', width: 140 },
1616
{ field: 'FirstName', headerText: 'Name', width: 125 },
1717
{ field: 'Title', headerText: 'Title', width: 180 },
1818
{

src/grid/images/spinner.gif

1.64 KB
Loading

src/grid/reorder-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/grid/reorder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ this.default = (): void => {
1212
dataSource: employeeData,
1313
allowReordering: true,
1414
columns: [
15-
{ field: 'EmployeeID', headerText: 'Employee ID', textAlign: 'right', width: 125 },
15+
{ field: 'EmployeeID', headerText: 'Employee ID', textAlign: 'right', width: 140 },
1616
{ field: 'FirstName', headerText: 'Name', width: 125 },
1717
{ field: 'Title', headerText: 'Title', width: 190 },
1818
{

src/grid/rowtemplate-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/grid/rowtemplate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ this.default = (): void => {
1616
height: 335,
1717
width: 'auto',
1818
columns: [
19-
{ headerText: 'Employee Image', width: 150, textAlign: 'center', field: 'OrderID' },
19+
{ headerText: 'Employee Image', width: 180, textAlign: 'center', field: 'OrderID' },
2020
{ headerText: 'Employee Details', width: 300, field: 'EmployeeID', textAlign: 'left' }
2121
]
2222
});

src/grid/virtualscrolling-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)