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-
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.