Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
385
How to hide filter row while retaining filtering?
posted

Hi,

I am interested in hiding filter row in XamDataGrid while filtering is retained. Is there any way to do this?

I tried to hook up for InitializeRecord with the following body, but it did not work.
if (e.Record is FilterRecord)
   e.Record.Visibility =
Visibility.Collapsed;

Thanks,
Peter