So what i want to know is in the below code example i want this level3 child to have 2-3 query string matching to its parent how can i do it
const level3 = {
dataSource: shipmentData,
queryString: "OrderID",
load() {
const key = "OrderID";
this.parentDetails.parentKeyFieldValue =
this.parentDetails.parentRowData[key];
},
childGrid: level4,
columns: [
{ field: "ShipmentID", headerText: "Shipment ID", width: 130 },
{ field: "Carrier", headerText: "Carrier", width: 100 },
{ field: "Status", headerText: "Status", width: 120 },
],
};