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.
Hello John, thanks for your answer. I will try this out.
-Arjan-
Hi AJ - I wrote a some javascript to bandage this for now. I run it during the Grids InitializeLayoutHandler
You will have to pass in the specific cell reference.
igtbl_getCellById(cellID).
set("innerHTML", "<SPAN style='DISPLAY: inline-block; WHITE-SPACE: nowrap'></SPAN>");
Hello John, unfortunately I didn't find a solution to this issue. I keep you informed when I hear or find something out.
Regards,
Arjan
Hi AJ - Did you find a solution to this yet? I am facing the same issue. I need to hide the OperandButton on the FilterRow for my Button Columns and a status column.
Thanks!!