ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: interloper10 on February 10, 2016, 12:01:36 am
-
This is just a suggestion for future perhaps.
I followed topic Hide detailModel if it's empty
http://paramquery.com/forum/index.php?topic=917.msg4605#msg4605
This works perfectly for my use case.
It would be great to be able to set a tool tip on the detail column like to setting the icons.
You would only want to show the tip if the detail was collapsed.
For example "Expand to show order details"
-
It can be done by adding title attribute in rowInit callback.
rowInit: function( ui ){
var rd = ui.rowData,
attr = rd.pq_cellattr = rd.pq_cellattr || {};
if( !rd.pq_detail || !rd.pq_detail.show ){
attr.pq_detail = { title: 'Click to expand' };
}
},
-
Very good - thank you!