ParamQuery grid support forum
General Category => ParamQuery Pro Evaluation Support => Topic started by: virendraparade01 on August 12, 2019, 07:32:34 pm
-
Hello Paramveer,
can u plz let me know what is the issue here in the code related to the column "Confirmed Quantity" calculation where I just fill the quantity for specific item. but can get the total at bottom of column.
The row is generated at the bottom can changes don't get reflected
Jsfiddle Link: https://jsfiddle.net/virendraparade01/3a1zqvkt/2/.
-
Rows in summary data should be in same format as those of data rows in grid.
totalData = { ConfirmedQuantity: revenueTotal};
https://jsfiddle.net/putgbymo/
Example to calculate aggregates at bottom:
https://paramquery.com/pro/demos/summary_json
-
can I Hide the button of attachments in row of Total
-
attachments button is hidden in Total row: https://jsfiddle.net/putgbymo/
First we add summaryRow in totalData
totalData = { summaryRow: true, ConfirmedQuantity: revenueTotal};
Then we use it in render callback:
render: function (ui) {
if( !ui.rowData.summaryRow)
return "<button type='button' class='Attach_btn'>Attachments</button>";
},
-
{
title: "UNIT OF MEASURE", width: 100, dataType: "string", dataIndx: "UnitOfMeasure",
render: function (ui) {
var abc = ui.rowData.ItemNo
var Unit = GetUnit(abc) //calling the GetUnit Function
return ui.cellData = Unit;
}
},
using the above solution I can see the value of ui.celldata on screen...but whenever I try to
var gridChanges = grid.getChanges({ format: 'byVal' });
console.log(gridChanges);
UnitOfMeasure: undefined
Here why can't I get the value of cell Unitofmeasure...could u plz help me out