[App.Vue]
childGrid: {
dataSource: orderDatas,
queryString: "EmployeeID",
toolbar: ["Add", "Edit", "Delete", "Cancel"],
editSettings: {
allowAdding: true,
allowEditing: true,
allowDeleting: true,
},
allowPaging: true,
pageSettings: { pageSize: 6, pageCount: 5 },
columns: [
{
field: "OrderID",
headerText: localizeArray.Lbl.period,
textAlign: "Right",
width: 120,
},
{ field: "ShipCity", headerText: localizeArray.Lbl.shipcity,validationRules:{required:true}, width: 120 },
{ field: "Freight", headerText: localizeArray.Lbl.freight, width: 120 },
{ field: "ShipName", headerText: localizeArray.Lbl.shipName, width: 150 },
],
},
};
},
|