This question is locked. New answers and comments are not allowed.
I have set the same datasource for two RadCombox win controls.The issue is If I change any of the combox selected Item, its reflecting other combo box also.
Though I have created new datatables for both combobox.
How do I fix this issue,
DataTable dtKeyFields = genericDetails.GridDataSource;
dtKeyFields.TableName = "KeyFields";
cbxKeyField.DataSource = dtKeyFields;
cbxKeyField.DisplayMember = "ColumnName";
DataTable dtPrimarySearchFields = genericDetails.GridDataSource;
dtPrimarySearchFields.TableName = "PrimarySearchFields";
cbxPrimarySearchField.DataSource = dtPrimarySearchFields;
cbxPrimarySearchField.DisplayMember = "ColumnName";
thanks in Advance,
Raghu
Though I have created new datatables for both combobox.
How do I fix this issue,
DataTable dtKeyFields = genericDetails.GridDataSource;
dtKeyFields.TableName = "KeyFields";
cbxKeyField.DataSource = dtKeyFields;
cbxKeyField.DisplayMember = "ColumnName";
DataTable dtPrimarySearchFields = genericDetails.GridDataSource;
dtPrimarySearchFields.TableName = "PrimarySearchFields";
cbxPrimarySearchField.DataSource = dtPrimarySearchFields;
cbxPrimarySearchField.DisplayMember = "ColumnName";
thanks in Advance,
Raghu