Hi clay,
First, the bitmap for image background and enable remove equals false, solved the problems I had.
As you asked, I''m attaching to this post, a zip file with a sample of the filtering problem I I''m having.
Just run the sample, click the filter button and you will see the filter bar.
Try to select some value to filter, and you will see that nothing is happening.
Can you make this sample work? or let me know what is wrong there?
Thanks a lot
Gil K
>1) If the cell style has a bitmap in its BackgroundImage property, the grid will draw the background even if its has its TransparentBackground property set. So, maybe setting this property will make this work for you.
>
>GridStyleInfo style = this.gridDataBoundGrid1.BaseStylesMap["Header"].StyleInfo;
>style.BackgroundImage = new Bitmap(1,1); //more or less empty
>
>
>2)
>
>this.gridDataBoundGrid1.Binder.EnableRemove = false;
>
>
>3) Need to set AllowResizeToFit = false to turn off the default sizing. See http://www.syncfusion.com/Support/article.aspx?id=577
>
>4)Is you grid in some kind of dynamic spllitter like our TabBarSplitterWnd or GridRecordNavigationBar? If so, you will have to wire the filterbar in PaneCreated and unwire it in PaneClosing. See http://www.syncfusion.com/Support/article.aspx?id=580.
>
>If this does not explain what you are seeing, can you post a sample showing the problem?
FilterSample_4583.zip