This is a migrated thread and some comments may be shown as answers.

Auto horizontal scroll and item tooltip in RadListControl

2 Answers 198 Views
ListControl
This is a migrated thread and some comments may be shown as answers.
Jaehong
Top achievements
Rank 1
Jaehong asked on 23 Aug 2010, 07:29 AM
HI,

I have some problem when using RadListControl.

First, not showed horizontal scroll bar automatically when item text drawn over horizontal area.
My item text use html redering.

Second, can not find property of tooltip in RadListDataItem.
RadListBoxItem has TooltipText in RadListBox.
You recommend RadListControl instead RadListBox.
But I need item tooltip text really.
How to implement item tooltip in RadListControl?

Jaehong.

2 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 25 Aug 2010, 05:03 PM
Hi Jaehong,

Thanks for writing.

We will do the best to add a horizontal scroll bar in our incoming SP2 scheduled for the first half of September. As to the second question, you should use VisualItemFormattiong event. Please refer to the code snippet below:
radListControl1.VisualItemFormatting += new Telerik.WinControls.UI.VisualListItemFormattingEventHandler(radListControl1_VisualItemFormatting);
....
void radListControl1_VisualItemFormatting(object sender, Telerik.WinControls.UI.VisualItemFormattingEventArgs args)
{
            args.VisualItem.ToolTipText = args.VisualItem.Text;
}

I hope this helps.

Greetings,
Peter
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Jaehong
Top achievements
Rank 1
answered on 26 Aug 2010, 06:26 AM
Thank you.
Tags
ListControl
Asked by
Jaehong
Top achievements
Rank 1
Answers by
Peter
Telerik team
Jaehong
Top achievements
Rank 1
Share this question
or