File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
projects/erp-hierarchical-grid/src
services/custom-operations Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import { erpDataService } from "../../services/ErpDataService";
23
23
import { BadgeVariant } from "../../models/BadgeVariant" ;
24
24
import { OrderStatus } from "../../models/OrderStatus" ;
25
25
import { DataPoint } from "../../models/DataPoint" ;
26
- import { FullAddressFilteringOperand } from "../../CustomFilteringOperand" ;
26
+ import { FullAddressFilteringOperand } from "../../services/custom-operations/ CustomFilteringOperand" ;
27
27
import BILL_PAID from "../../assets/icons/bill_paid.svg" ;
28
28
import CHECK from "../../assets/icons/check.svg" ;
29
29
import DELIVERY from "../../assets/icons/delivery.svg" ;
@@ -130,7 +130,7 @@ const ErpHGrid = () => {
130
130
const rating : number = ctx . cell . value ;
131
131
return (
132
132
< >
133
- < IgrRating value = { rating } > </ IgrRating >
133
+ < IgrRating value = { rating } readOnly = { true } max = { 5 } > </ IgrRating >
134
134
</ >
135
135
) ;
136
136
} ;
@@ -459,7 +459,7 @@ const ErpHGrid = () => {
459
459
field = "orderInformation"
460
460
header = "Address"
461
461
dataType = "string"
462
- sortable = { true }
462
+ sortable = { false }
463
463
resizable = { true }
464
464
visibleWhenCollapsed = { false }
465
465
formatter = { formatAddress }
@@ -471,7 +471,7 @@ const ErpHGrid = () => {
471
471
field = "orderInformation"
472
472
header = "Address"
473
473
dataType = "string"
474
- sortable = { true }
474
+ sortable = { false }
475
475
resizable = { true }
476
476
visibleWhenCollapsed = { true }
477
477
formatter = { formatFullAddress }
File renamed without changes.
You can’t perform that action at this time.
0 commit comments