This question is locked. New answers and comments are not allowed.
Hello,
I have created my filter on radGrid like on your demo.
There is method like this:
| public void Prepare(GridViewBoundColumnBase column) |
| { |
| this.column = column; |
| if (this.compositeFilter == null) |
| { |
| this.CreateFilters(); |
| } |
| this.fromFilter.Value = this.FromDate; |
| this.toFilter.Value = this.ToDate; |
| } |
Now I want to have a name of radGrid, which is the parent of column. Is it possible?