Is there a way programmaticly open a given columns filter input?
2 Answers, 1 is accepted
0
Rossen Hristov
Telerik team
answered on 29 Aug 2011, 12:32 PM
Hello Austin,
I have prepared a sample project that demonstrates one possible approach.
You can find it attached.
All the best,
Ross
the Telerik team
Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward!
We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>
var f = nameHeaderCell.ChildrenOfType<FilteringDropDown>().FirstOrDefault();
if(f != null)
{
f.IsDropDownOpen = true;
}
}
}
All the best,
Ross
the Telerik team
Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward!
We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>