81
Help for ParamQuery Pro / Re: Show tabular data in cell hover over
« Last post by paramvir on March 05, 2025, 03:45:07 pm »Rich html content can be displayed in the cell tooltips by using attr property in column.render callback.
and creating pqTooltip in the create callback in main grid options.
Code: [Select]
render: function( ui ){
return {
attr: {
title: "<b>Rich</b> <i>Text<i>!"
}
}
}
and creating pqTooltip in the create callback in main grid options.
Code: [Select]
create: function (evt, ui) {
this.widget().pqTooltip();
}