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

Close custom Filter control

2 Answers 87 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Chirag
Top achievements
Rank 1
Chirag asked on 14 Mar 2012, 08:09 AM
Hi to All

Using Version = 2011.1.411.1040 

i am create one custom filter control for telerik silverlight  RadGridView,
in this control one close button at right hand top corner 

i want to close filter control on click of close button, how can i achieve this 

2 Answers, 1 is accepted

Sort by
0
Chirag
Top achievements
Rank 1
answered on 17 Mar 2012, 06:50 AM
hi to all 

still i am waiting for some solution 

also reply if you think  this is  not possible 
0
Chirag
Top achievements
Rank 1
answered on 10 May 2012, 01:50 PM
Hi to All 

i am fond a solution for close Custom Filter control 

private void btnclose_Click(object sender, RoutedEventArgs e)
{
   FilteringDropDown down = Telerik.Windows.Controls.UIElementExtensions.ParentOfType<FilteringDropDown>(this);
   if (down != null)
   {
     down.IsDropDownOpen = false;
   }
}


Tags
GridView
Asked by
Chirag
Top achievements
Rank 1
Answers by
Chirag
Top achievements
Rank 1
Share this question
or