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

Column Custom Filter Bug

4 Answers 95 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Gourangi
Top achievements
Rank 1
Gourangi asked on 12 Feb 2009, 10:16 AM
Hi,

I have form which TopMost property is true. Now I have added one RADGrid View and assign data into it.

The custom filter dialog is not displayed because my form is TopMost = true.
I think that filter dialog is hidded because my form is always on top !

Regards,
Divyesh Chapaneri

4 Answers, 1 is accepted

Sort by
0
Jordan
Telerik team
answered on 16 Feb 2009, 11:42 AM
Hi Divyesh Chapaneri,

Thank you for writing. You are correct, the top most parent form hides the custom filter dialog. I have scheduled a fix for that problem for the next release - Q1 2009.

Sincerely yours,
Jordan
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Ronald Bouras
Top achievements
Rank 1
answered on 29 Jul 2016, 08:01 AM

Hi Jordan,

hm, I´m afraid seven years later this bug is still (or again) up and running?

We have the exact same problem with RadGridView of Version 2016.2.503.40.

This is actually quite urgent, because we need the custom filter features and the form HAS TO BE TOPMOST, because its an excel addin and the form will "disappear" behind the excel window when clicking in a cell.

What can we do about this?

Thanks for any recommendation in advance

Ronald Bouras

 

 

0
Dimitar
Telerik team
answered on 29 Jul 2016, 10:05 AM
Hello Ronald,

Thank you for writing.

I was able to reproduce this and this behaviour is expected when your form is TopMost. In this case, you can make the dialog TopMost as well:
public RadForm2()
{
    InitializeComponent();
   
    radGridView1.CreateCompositeFilterDialog += RadGridView1_CreateCompositeFilterDialog;
}
 
private void RadGridView1_CreateCompositeFilterDialog(object sender, Telerik.WinControls.UI.GridViewCreateCompositeFilterDialogEventArgs e)
{
    e.Dialog.TopMost = true;
}

We are not considering this as an issue at this point and we do not want to make this dialog TopMost by default.

I hope this will be useful. 
 
Regards,
Dimitar
Telerik by Progress
Check out the Windows Forms project converter, which aids the conversion process from standard Windows Forms applications written in C# or VB to Telerik UI for WinForms.For more information check out this blog post and share your thoughts.
0
Ronald Bouras
Top achievements
Rank 1
answered on 29 Jul 2016, 10:30 AM

Hi Dimitar,

that was easy :-)

Perfectly sufficient for our purposes, thank you.

Have a nice weekend
Ronny

Tags
GridView
Asked by
Gourangi
Top achievements
Rank 1
Answers by
Jordan
Telerik team
Ronald Bouras
Top achievements
Rank 1
Dimitar
Telerik team
Share this question
or