Hi,
Sorry to need help again, but I'm at my wits end.
I've got a WHDG, completely with childrecords, filtering, sorting and resizing.
When opening the page, everything is set in code. (serverside vb.Net for the whdg, aspx for the datasource)
Screen 1: startup, everything seems in order, filters set for all needed columns.
Screen 2: first problem, the filtering is not correctly set for my child items. (should have NO FILTER. Now he shows the filter, but no filtersetting)
Screen 3: second problem, a refresh happens, because of filtering, and the filtering appears for all columns!
What can I do? Please do nog ask for an isolated example. I CAN provide any code snippets, or running results.
Behaviors are set to enableInheritance, and I can find every filtersetting in debug, set to enabled=false, yet on show, it does show the icon.
there are no other server side events coded on the grid
in attachment my sample of development, in which I hve the problem
(page DefaultNew.aspx)
Hope this helps me get a solution
Hi Razieltje,
I am attaching a sample of WebHierarchicalDataGrid with filtering of parent and child bands. The first column of both bands has filtering disabled. The filter icon is not displayed after filtering.
Thank you Petar for the reply.
I look forward to a solution.
Greetings,
Ruben.
Hello Razieltje,
Thank you for your replies.
We are currently researching this scenario and will keep you posted of any available information.
Hi Nikolay,
Unfortunately, i think you have misunderstood the problem. I already define it that way. This happens on page load (NOT postback)
--------------
beh== behavior of the band where the column is added
If beh.Filtering IsNot Nothing Then Dim cs As New Infragistics.Web.UI.GridControls.ColumnFilteringSetting() cs.ColumnKey = col.Key cs.Enabled = False cs.AfterFilterAppliedImageUrl = "" cs.BeforeFilterAppliedAltText = "" cs.BeforeFilterAppliedImageUrl = "" beh.Filtering.ColumnSettings.Add(cs) End If
------------------------
this gives a perfect result on page build (first time, see "1")
BUT, when I enter a search value, those columns get the filter icon! (see "2" red zones!) + code from previous post.