Hello,
I seem to have a problem on my GridView : I add a column and specify its datatypeconverter this way :
It works fine, the CanConvert and Convert methods are called as expected
However, what I need is an image column. If I change the previous code to this :
All my column's cells remain empty, and I never step in any of the TypeConverter's methods.
Is there anything obvious I don't see ? (I'm using the Q3 2011 version of the controls)
Thanks in advance !
I seem to have a problem on my GridView : I add a column and specify its datatypeconverter this way :
Dim col As New GridViewTextBoxColumn("Code", "Code")col.DataTypeConverter = New CodePluginConverter()gvHistorique.Columns.Insert(0, col)However, what I need is an image column. If I change the previous code to this :
Dim col As New GridViewImageColumn("Code", "Code")col.DataTypeConverter = New CodePluginConverter()gvHistorique.Columns.Insert(0, col)Is there anything obvious I don't see ? (I'm using the Q3 2011 version of the controls)
Thanks in advance !