Listview Item Tooltip not showing

0
0

I’m adding items via code to a listview control & setting the tooltip:

for (int i = 0; i < 11; i++)
{
string ls_DocName = “Document ” + i;
string ls_DocNum = i.ToString();
ListViewItem lo_item = new ListViewItem();
lo_item.Text = ls_DocName;
lo_item.SubItems.Add(ls_DocNum);
lo_item.ImageIndex = 0;
lo_item.ToolTipText = “abc123_1234.pdf”;

lvw_Docs.Items.Add(lo_item);
}

I have the ShowItemToolTips set to True.  I have a tooltip conrol on the form

However, the tooltips do not show up at run time

The ListView is inside an accordion control’s Accordion Panel.

If I set a tooltip on the actual listview itself – it shows up at run time.

Not sure what else to try.

  • You must to post comments
0
0

Hi Edmond,

WJ-9034 is now fixed in the latest Wisej release (1.5.4).

Best regards
Frank

  • You must to post comments
0
0

PS: as a workaround you can set ShowItemToolTips to false until the fix is available. 😉

  • edmond girardi
    I did – still does not work
  • Luca (ITG)
    In item view. In detail view doesn’t work either way.
  • edmond girardi
    Yeah – I’m using derail view
  • You must to post comments
0
0

Hi Edmond,

we could reproduce and logged that issue as WJ-9034.
We´ll inform you when a fix is available.

Best regards
Frank

  • You must to post comments
Showing 3 results
Your Answer

Please first to submit.