Hello,
I write very flexible application and I have a few problem. I use RadGridView and all columns are added in code behind. I have created custom filter controls. Data in RGV are downloaded from WCF WebService. In this case I have a List<object>. And this is a problem. If data are object type, i don't have filter button on gridviewhederrow. I change column datatype. For example: column.DataType = typeof(string). Now filter button is visible. My control can be show, but they doesn't work.
I have a exception, because comparing object and other type is failed. What should I do?
I need: create column in code behind, with custom filter. Data source is flexible and it can't be List<string>. It must be List<object>.
Kind Regards
Marcin
I write very flexible application and I have a few problem. I use RadGridView and all columns are added in code behind. I have created custom filter controls. Data in RGV are downloaded from WCF WebService. In this case I have a List<object>. And this is a problem. If data are object type, i don't have filter button on gridviewhederrow. I change column datatype. For example: column.DataType = typeof(string). Now filter button is visible. My control can be show, but they doesn't work.
I have a exception, because comparing object and other type is failed. What should I do?
I need: create column in code behind, with custom filter. Data source is flexible and it can't be List<string>. It must be List<object>.
Kind Regards
Marcin