ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: necatiozbek on July 18, 2024, 06:50:32 pm
-
I am using the AutoSum function. but at the bottom there is the word "sum" in the grandSummary field. Can we change this "Toplamlar" expression?
There is also a checkbox in the grandsummary field that shouldn't be there.
Please review the attached image.
-
If you want to configure sum text in summary row for all columns, then use summaryTitle option
https://paramquery.com/pro/api#option-summaryTitle
If you want to do it for only one / few columns but not all, then use column.render for that column.
column.render = function(ui){
return ui.formatVal;
}
checkbox is not added in the summary row by default, please share your definition of checkbox column and summary rows.
-
My object does not have a setting for the selection box to appear in the summary area
Also I don't know how to use SummaryTitle. I couldn't do it.
I'm trying other options for aggregation (Custom summary), but the summary field gets corrupted when I group the columns.
MycolModel: [
{
// This field is actually an integer field, consisting of 1 and 0. I turned the integer field into a selection box.
title: "İstisnalı",
dataIndx: "ISTISNA_FATURA", dataType: "integer", align: "center",
width: 70,
editor: false,
editable: false,
type: 'checkbox',
cb: {
all: false,
header: true,
check: 1,
uncheck: 0
},
render: function (ui) {
var cb = ui.column.cb,
cellData = ui.cellData,
checked = cb.check === cellData ? 'checked' : '',
disabled = this.isEditableCell(ui) ? "" : "disabled",
text = cb.check === cellData ? '1' : (cb.uncheck === cellData ? '0' : '<i>bilinmez</i>');
return {
text: "<label><input type='checkbox' " + checked + " /></label>",
};
},
These are the columns I calculated total
{
title: "Ft Genel Toplam", dataIndx: "FT_GENEL_TOPLAM", dataType: "float", format: '##,###.00',
summary: {
type: "sum"
},
},
{
title: "Tevkifatlı KDV Toplam", dataIndx: "TEVKIFATLI_KDV_TOPLAMI", dataType: "float", format: '##,###.00',
summary: { type: "sum" },
}
]
var obj_my_grid = {
showTitle: false,
editable: false,
resizable: true,
.,
.,
.,
//This is the only place in the object related to the total
groupModel: {
on: true,
dataIndx: [],
collapsed: [true, true],
merge: false,
showSummary: [true, false],
grandSummary: true,
},
}
var grid_invoice_List= pq.grid("#grid_filter", obj_my_grid);
-
1)
column.render callback is called for cells in grid as well as summary rows.
Either you can use the grid API to render checkbox columns by adding type: 'checkbox' to the columns and map 1 to check and 0 to uncheck similar to this example:
https://paramquery.com/pro/demos/checkbox
type: 'checkbox', //required property.
cb: {
header: true, //for header checkbox.
check: 1, //check the checkbox when cell value is 1
uncheck: 0 //uncheck when 0
},
or if you want to use custom render function to display checkboxes, then you can exclude the summary row by adding a check for summary row meta data.
if( ui.rowData.pq_grandsummary ){ //grand summary row.
return ""; //no checbox
}
2)
add this in the grid initialization options:
summaryTitle:{ sum:"{0}"},