4 Answers, 1 is accepted
0
Accepted
Hi,
You can define the FilteringDropDown independently similar to:
Have in mind that if you place a FilteringDropDown outside the grid and associate it with a specific column, then this column has to be invisible in the grid, because its FilteringControl cannot be simultaneously shared between two separate Popups.
Regards,
Didie
Telerik
You can define the FilteringDropDown independently similar to:
<
telerik:FilteringDropDown
Name
=
"fdd"
Grid.Row
=
"1"
Margin
=
"2"
Column
=
"{Binding Columns[\Established\], ElementName=clubsGrid}"
/>
Have in mind that if you place a FilteringDropDown outside the grid and associate it with a specific column, then this column has to be invisible in the grid, because its FilteringControl cannot be simultaneously shared between two separate Popups.
Regards,
Didie
Telerik
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.
0
Vamshi
Top achievements
Rank 1
answered on 18 Jun 2013, 09:21 PM
Thanks for the help..
I tried to use the way you suggested, everything looks good but I noticed that the pop-up (filtercontrol pop-up) is not appearing next to the funnel its appearing at random location, is there any way to set popup placement?
I tried to use the way you suggested, everything looks good but I noticed that the pop-up (filtercontrol pop-up) is not appearing next to the funnel its appearing at random location, is there any way to set popup placement?
0
Accepted
Hi,
Regards,
Didie
Telerik
I have placed the FitleringDropDown in a StackPanel or in a Grid.Row with Height=Auto and it always opens next to the funnel.
<
Grid
>
<
Grid.RowDefinitions
>
<
RowDefinition
Height
=
"*"
/>
<
RowDefinition
Height
=
"Auto"
/>
</
Grid.RowDefinitions
>
....
<
StackPanel
Grid.Row
=
"1"
Orientation
=
"Horizontal"
>
<
telerik:FilteringDropDown
Name
=
"fdd"
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 21 Jun 2013, 05:06 PM
Thanks your solution worked...wraping the filterdropdowncontrol with stackpanel did the magic..