Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    How to show tooltip on a cell?

    In a ListGrid, some of cells have very long contents, I want to show the entire content on a tooltip when mouse over it, is it possible?

    #2
    sorry just found my answer.

    setCanHover(true)
    setShowHover(true)

    My next question, can I control that to show on some cells only?

    Comment


      #3
      You should be able to customize the hover using the "setHoverCustomizer" API at the grid or field level. You can return null from the 'hoverHTML()' method to suppress the hover prompt entirely.

      Comment

      Working...
      X