Unplanned
Last Updated: 03 Mar 2023 09:41 by ADMIN
Suresh
Created on: 03 Mar 2023 09:26
Category: GridView
Type: Bug Report
0
RadGridView: The buttons in the Excel-like filtering popup are truncated when their font size is increased

When the font size of the OK and Cancel buttons inside the Excel-like filtering popup is increased, the buttons are cut.

1 comment
ADMIN
Dinko | Tech Support Engineer
Posted on: 03 Mar 2023 09:41

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.