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

FieldEditor list isn't scrollable

2 Answers 70 Views
Filter
This is a migrated thread and some comments may be shown as answers.
Steve
Top achievements
Rank 1
Steve asked on 06 Oct 2010, 11:43 PM
I was trying out the code example using RadFilter in a RadWindow and I have over a hundred fields in my FieldEditor list.  The problem is that when I select the dropdown, the list is larger than the screen and I'm unable to scroll through the list.  Is there a fix for this or do I have to stick with the standard grid filtering?  I want to be able to present my users with a concise grid, but with the ability to filter by more fields than displayed and only show the full resultset when they export to Excel.

2 Answers, 1 is accepted

Sort by
0
Nikolay Rusev
Telerik team
answered on 12 Oct 2010, 02:34 PM
Hello Steve,

You can handle RadFilter.PreRender event and use the following code to enable scrolling of RadContextMenu.

1.protected void RadFilter1_PreRender(object sender, EventArgs e)
2.    {
3.        var menu = RadFilter1.FindControl("rfContextMenu") as RadContextMenu;
4.        menu.DefaultGroupSettings.Height = Unit.Pixel(50);
5.        menu.EnableAutoScroll = true;
6.    }

All the best,
Nikolay
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
Julie
Top achievements
Rank 1
answered on 25 May 2012, 01:46 PM
Hi,

This code implement scrolling for all the context menu of the filter.  I just want it for the list of fieldeditor but i don't know how to do this.

Have ideas??

Julie
Tags
Filter
Asked by
Steve
Top achievements
Rank 1
Answers by
Nikolay Rusev
Telerik team
Julie
Top achievements
Rank 1
Share this question
or