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

FilterDropDownControl PopUp Placement

2 Answers 20 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Vamshi
Top achievements
Rank 1
Vamshi asked on 19 Jun 2013, 09:37 PM
Hi

I am trying to use FilterDropDownControl but the pop-up control is not appearing next to the funnel, its appearing at random location.
Is there any way to set the pop-up placement

2 Answers, 1 is accepted

Sort by
0
Dimitrina
Telerik team
answered on 24 Jun 2013, 03:04 PM
Hi,

You can place the FilteringDropDown in a StackPanel in a Grid.Row with Height=Auto and it always opens next to the funnel. 
For example:

<Grid>
     <Grid.RowDefinitions>
    <RowDefinition Height="*"/>
    <RowDefinition Height="Auto" />
     </Grid.RowDefinitions>
        ....
    <StackPanel Grid.Row="1" Orientation="Horizontal">
      <telerik:FilteringDropDown Column="{Binding Columns[\Established\], ElementName=clubsGrid}" />
    </StackPanel>
</Grid>

 

Regards,
Didie
Telerik

Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

0
Vamshi
Top achievements
Rank 1
answered on 24 Jun 2013, 03:42 PM
Thanks, it worked.
Tags
General Discussions
Asked by
Vamshi
Top achievements
Rank 1
Answers by
Dimitrina
Telerik team
Vamshi
Top achievements
Rank 1
Share this question
or