[App.Vue]
paymentGrid: {
ref: "pGrid",
dataSource: billingData.payments,
queryString: "BillID",
enableAltRow: false,
columns: [
{
headerText: "Payment",
width: "300",
field: "Description",
},
{
field: "PaymentDate",
headerText: "Date Paid",
format: "yMd",
type: "date",
textAlign: 'center"',
width: "90",
},
{
field: "Amount",
headerText: "Paid",
textAlign: "right",
width: "100",
format: "C2",
type: "number",
},
],
} |