The workaround in the docs is:
Object dataSource;
Object
String dataMember;
String
BindingSource bindingSource = new BindingSource( dataSource, dataMember );
new
this.ultraGrid1.DataSource = bindingSource;
this
currently my code for binding is
ultraGrid1.DataSource = m_ds.Tables[0].DefaultView;
where m_ds is a dataset.
What should my dataSource and dataMember be?
Thanks.
-Nick
Hi Nick,
dataSource: your DataSet
dataMember: Name of your Datatable
if this doesn't work:
dataSource: your DataTable
dataMember: empty