When the font size of the OK and Cancel buttons inside the Excel-like filtering popup is increased, the buttons are cut.
Hello Suresh,
Thank you for the provided details. A possible workaround here would be to use the FilterPopupInitialized event of the RadGridView. In the event handler, we can move the buttons to the left by adding a right margin.
private void radGridView1_FilterPopupInitialized(object sender, FilterPopupInitializedEventArgs e)
{
RadListFilterPopup popup = e.FilterPopup as RadListFilterPopup;
if (popup!=null)
{
popup.ButtonsMenuItem.Margin = new Padding(0, 0, 20, 0);
}
}
Regards,
Dinko | Tech Support Engineer
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.