ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: omerix on April 19, 2014, 03:09:06 am
-
Hello,
Not work:
$grid.on("pqgridload", function( event, ui ) {
$(".br").tooltip(
{ content: "Awesome title!" }
);
});
Page works, PQGrid in cell does not work.
<script>
$(document).ready(function () {
$(".br").tooltip({
content: function() {
return "<img src='"+$(this).attr('src')+"' style='max-width:740px;max-height:500px;'/>"
}
});
});
</script>
Thanks.
-
cell tooltip should be added in pqgridrefresh instead of pqgridload.