Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
AI Productivity Tools
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Hello Telerik Team,
I'm using Excel-like filtering feature of RadGridView. I need to change font in PopUp.
private
void
RadGridView1_FilterPopupInitialized(
object
sender, FilterPopupInitializedEventArgs e)
{
RadListFilterPopup popup = e.FilterPopup
as
RadListFilterPopup;
if
(popup !=
null
)
popup.MenuTreeElement.TreeView.NodeFormatting -= TreeView_NodeFormatting;
popup.MenuTreeElement.TreeView.NodeFormatting += TreeView_NodeFormatting;
}
Font font =
new
Font(
"Segoe Script"
, 9, FontStyle.Regular);
TreeView_NodeFormatting(
sender, TreeNodeFormattingEventArgs e)
e.NodeElement.ContentElement.Font = font;