Skip to content

Commit 84f5f16

Browse files
author
tfsbuild
committed
Adding changes from build igniteui-xplat-examples-output+PRs_2025.5.20.4
1 parent a7ab826 commit 84f5f16

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

samples/grids/grid/binding-crud-data/src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import './index.css';
44

55
import { IgrPropertyEditorPanelModule } from 'igniteui-react-layouts';
66
import { IgrGridModule } from 'igniteui-react-grids';
7-
import { IgrGrid, IgrColumn } from 'igniteui-react-grids';
7+
import { IgrGrid, GridPagingMode, IgrColumn } from 'igniteui-react-grids';
88
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-react-core';
99
import NwindData from './NwindData.json';
1010

@@ -43,7 +43,7 @@ export default class Sample extends React.Component<any, any> {
4343
primaryKey="ProductID"
4444
isLoading={true}
4545
allowFiltering={false}
46-
pagingMode="remote"
46+
pagingMode={GridPagingMode.Remote}
4747
rowEditable={true}>
4848
<IgrColumn
4949
field="ProductName"

samples/grids/grid/remote-paging-data/src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import './index.css';
44

55
import { IgrPropertyEditorPanelModule } from 'igniteui-react-layouts';
66
import { IgrGridModule } from 'igniteui-react-grids';
7-
import { IgrGrid, IgrPaginator, IgrColumn } from 'igniteui-react-grids';
7+
import { IgrGrid, GridPagingMode, IgrPaginator, IgrColumn } from 'igniteui-react-grids';
88
import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-react-core';
99
import NwindData from './NwindData.json';
1010

@@ -41,7 +41,7 @@ export default class Sample extends React.Component<any, any> {
4141
data={this.nwindData}
4242
moving={true}
4343
allowAdvancedFiltering={true}
44-
pagingMode="remote">
44+
pagingMode={GridPagingMode.Remote}>
4545
<IgrPaginator
4646
perPage={10}
4747
totalRecords={20}>

samples/grids/hierarchical-grid/multi-column-headers-styling/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default class Sample extends React.Component<any, any> {
3939
data={this.hierarchicalCustomers}
4040
ref={this.hierarchicalGridRef}
4141
id="hierarchicalGrid"
42-
primaryKey="ID"
42+
primaryKey="CustomerID"
4343
moving={true}
4444
allowFiltering={true}>
4545
<IgrColumn

samples/grids/hierarchical-grid/multi-column-headers-template/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default class Sample extends React.Component<any, any> {
4040
data={this.hierarchicalCustomers}
4141
ref={this.hierarchicalGridRef}
4242
id="hierarchicalGrid"
43-
primaryKey="ID"
43+
primaryKey="CustomerID"
4444
moving={true}
4545
allowFiltering={true}>
4646
<IgrColumn

0 commit comments

Comments
 (0)