ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: dbadmin on October 09, 2014, 12:13:41 am
-
Hi!
I was wondering, if there is a way to hide a collapse image in the very left column (which controls showing of a detail model) if I know ahead of time that it's going to be empty? Let's say I'll have a column in the main grid that will tell me that.
Thanks!
-
you could do it in refresh event by iterating over all rows in dataModel.data,
in refresh event
do a for loop on dataModel.data
if(rowData['field'] == false ){ //where field is dataIndx of field where you want to store prior info about detail of a row.
get $td from call to getCell ({ rowIndx: i, dataIndx: 'pq_detail' });
$td.empty();
}
-
Hi!
So I tried that, but it gets rid of the cell borders and looks weird, instead I did the following:
var $td = $("#grid_array").pqGrid( "getCell", { rowIndx: i, dataIndx: "pq_detail" } );
$td.html(' ');
Now the problem is, when I click on this empty cell it still opens up detail grid.
How do I avoid that?
Thanks!
-
1) The rendering of icon in detail column can also be customized more conveniently with column.render callback.
column.render = function ( ui ){
if( some condition ){
//return custom html "" or " ";
}
else {
return null; // let the default rendering take place.
}
}
2) There is an event beforeRowExpand added in v2.4.0 which helps to prevent default action of expansion of row by returning false.
http://paramquery.com/pro/api#event-beforeRowExpand
-
Thank you!
You solution worked perfectly. I used "beforeRowExpand" in combination with "colModel.render".