AD
Administrator
Syncfusion Team
September 10, 2004 12:18 PM UTC
There is a static (Shared in VB) member of the GridModelDataBinder.AutoInitCellTypes that you can set to control this functionality. So, at the top of your form’s constructor, before the call to InitializeComponent(), you can add:
GridModelDataBinder.AutoInitCellTypes = false;
GR
Gordon Rhea
September 10, 2004 12:27 PM UTC
That did the trick.
Thanks for the quick respons.