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
Hide rowFilter Button in UltraWebGrid
posted

Hello, is it possible to hide the rowFilter button for some columns? Now I can only disable them, but I still see them.

Thanks in advance.

-AJ-

 

 

Parents
No Data
Reply
  • 516
    posted

    Is this what you're looking for?

           private void UltraWebGrid1_InitializeRow(object sender, Infragistics.WebUI.UltraWebGrid.RowEventArgs e)
            {
                e.Row.Cells[number of column].Column.AllowRowFiltering = false;
            }

    This works for me.

     

Children
No Data