Author Topic: Jqueryui Tooltip in cell  (Read 3132 times)

omerix

  • Pro Enterprise
  • Full Member
  • *
  • Posts: 147
    • View Profile
Jqueryui Tooltip in cell
« on: April 19, 2014, 03:09:06 am »
Hello,

Not work:
Code: [Select]
$grid.on("pqgridload", function( event, ui ) {
$(".br").tooltip(
{ content: "Awesome title!" }
);
});

Page works, PQGrid in cell does not work.
Code: [Select]
<script>
$(document).ready(function () {
$(".br").tooltip({
content: function() {
return "<img src='"+$(this).attr('src')+"' style='max-width:740px;max-height:500px;'/>"
}
});
});
</script>

Thanks.

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6263
    • View Profile
Re: Jqueryui Tooltip in cell
« Reply #1 on: April 21, 2014, 09:00:15 am »
cell tooltip should be added in pqgridrefresh instead of pqgridload.