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

RadDropdownButtonElement bug

1 Answer 52 Views
Buttons, RadioButton, CheckBox, etc
This is a migrated thread and some comments may be shown as answers.
Hugues
Top achievements
Rank 1
Hugues asked on 15 Jan 2015, 05:17 PM
If you add a TrackbarElement to a DropDownMenu and scroll it to the end of the trackbar, it will lock and the application will become unresponsive.

1 Answer, 1 is accepted

Sort by
0
Hristo
Telerik team
answered on 20 Jan 2015, 03:02 PM
Hi Jerome,

Thank you for writing.

I confirm that this is an issue with our RadTrackBar element and I have logged it in our FeedBack Portal. You can track the item for status changes and add your vote for it here.

You could workaround the issue by setting the StretchHorizontally property of your RadTrackBar element to false. You would also need to apply a margin and adjust its position in the DropDownButton element. Please see my code below:
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
 
        RadTrackBarElement trackBar = new RadTrackBarElement();
        trackBar.StretchHorizontally = false;
 
        RadMenuItem menuItemTrackBar = new RadMenuItem();
        menuItemTrackBar.Margin = new Padding(0, 0, -25, 0);
        menuItemTrackBar.Children.Add(trackBar);
        this.radDropDownButton1.Items.Add(menuItemTrackBar);
    }
}

I am also sending you a .gif file showing the result on my end.

Your Telerik Points have been updated for this report.

I hope this information helps. Should you have further questions please do not hesitate to write back.

Regards,
Hristo
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Buttons, RadioButton, CheckBox, etc
Asked by
Hugues
Top achievements
Rank 1
Answers by
Hristo
Telerik team
Share this question
or