EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: gib65 on June 13, 2017, 03:24:54 PM



Title: tooltip on PropertyGrid
Post by: gib65 on June 13, 2017, 03:24:54 PM
Hello,

I am experimenting with EasyUI PropertyGrid. Is there a way to get a tooltip on each row. What I'm trying to do is have a way for the user see the full text in the cell. So if the cell displays: "Loss of flow from source...", I want the tooltip when it hovers over that cell to display "Loss of flow from source to the Rundown Butane Storage Vessels group."


Title: Re: tooltip on PropertyGrid
Post by: qianet on June 13, 2017, 09:59:58 PM
suggest:
use css solve it.

css:
.title{ width:300px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}

<div class="title" title="display text display text display text display text ">display text display text display text display text </div>


Title: Re: tooltip on PropertyGrid
Post by: gib65 on June 14, 2017, 09:36:18 AM
Perfect! That's exactly what I need.