listview tooltip limitations

Discuss GUI programming with the RapaGUI plugin here
Post Reply
amyren
Posts: 352
Joined: Thu May 02, 2019 11:53 am

listview tooltip limitations

Post by amyren »

Using tooltip in a listview does work on its own, but can not be used in certain combinations

this will show the tooltip

Code: Select all

<listview id="lv" tooltip="Tooltip test" notify="active">
	<column title="Name"/>
</listview>
With editable set for one of the columns, the tooltip is missing

Code: Select all

<listview id="lv" tooltip="Tooltip test" notify="active">
	<column title="Name" editable="true"/>
</listview>
Also there seem to be a connection between sortable and editable.
If none of the colums are set to ediable="true", sorting does not work. The sortable column itself doesnt need to be set editable, as long as any of the columns in the listview are set to editable it will work.
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: listview tooltip limitations

Post by airsoftsoftwair »

Which platform?
amyren
Posts: 352
Joined: Thu May 02, 2019 11:53 am

Re: listview tooltip limitations

Post by amyren »

This is on windows 10, I have not tried on other platforms yet.
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: listview tooltip limitations

Post by airsoftsoftwair »

Ok, I can reproduce that. Will be fixed.
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: listview tooltip limitations

Post by airsoftsoftwair »

Code: Select all

- Fix [Windows]: Area.Tooltip didn't work with Listview and Treeview in dataview mode
Post Reply