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";
2323import { BadgeVariant } from "../../models/BadgeVariant" ;
2424import { OrderStatus } from "../../models/OrderStatus" ;
2525import { DataPoint } from "../../models/DataPoint" ;
26- import { FullAddressFilteringOperand } from "../../CustomFilteringOperand" ;
26+ import { FullAddressFilteringOperand } from "../../services/custom-operations/ CustomFilteringOperand" ;
2727import BILL_PAID from "../../assets/icons/bill_paid.svg" ;
2828import CHECK from "../../assets/icons/check.svg" ;
2929import DELIVERY from "../../assets/icons/delivery.svg" ;
@@ -130,7 +130,7 @@ const ErpHGrid = () => {
130130 const rating : number = ctx . cell . value ;
131131 return (
132132 < >
133- < IgrRating value = { rating } > </ IgrRating >
133+ < IgrRating value = { rating } readOnly = { true } max = { 5 } > </ IgrRating >
134134 </ >
135135 ) ;
136136 } ;
@@ -459,7 +459,7 @@ const ErpHGrid = () => {
459459 field = "orderInformation"
460460 header = "Address"
461461 dataType = "string"
462- sortable = { true }
462+ sortable = { false }
463463 resizable = { true }
464464 visibleWhenCollapsed = { false }
465465 formatter = { formatAddress }
@@ -471,7 +471,7 @@ const ErpHGrid = () => {
471471 field = "orderInformation"
472472 header = "Address"
473473 dataType = "string"
474- sortable = { true }
474+ sortable = { false }
475475 resizable = { true }
476476 visibleWhenCollapsed = { true }
477477 formatter = { formatFullAddress }
File renamed without changes.
You can’t perform that action at this time.
0 commit comments