Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ const ErpHGrid = () => {
primaryKey="sku"
moving={true}
rowSelection={selectionMode}
isLoading={!gridData.length}
width="100%"
height="100%"
>
Expand Down
1 change: 1 addition & 0 deletions projects/finance-grid/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ function FinanceGrid() {
rowSelection="multiple"
data={financeData}
ref={gridRef}
isLoading={!financeData.length}
className="grid-sizing"
>
<IgrGridToolbar>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,7 @@ export default function FleetManagement() {
<div className="row-layout fleet-management-container">
<IgrGrid
data={vehiclesData}
isLoading={!vehiclesData.length}
primaryKey="vehicleId"
detailTemplate={masterDetailTemplate}
className="ig-typography ig-scrollbar main-grid"
Expand Down
1 change: 1 addition & 0 deletions projects/hr-portal/src/app/hr-portal/hr-portal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ export default function HRPortal() {
autoGenerate={false}
ref={gridRef}
data={data}
isLoading={!data.length}
primaryKey="ID"
childDataKey="Employees"
rowSelection="multipleCascade"
Expand Down