How to perform data binding for specific columns in Dev Express XtraGridControl?

In .net grid mode, we have the " DataPropertyName " property , where we can specify the name of the column that you want to bind

Sample Code:

dataGridView1.Columns[index].DataPropertyName=
myDataSource.Tables[index].Columns[index].ColumnName);

Any body please help me how to do this in DevExpress Extra Grid Control

Thanks in advance

+3
source share
1 answer

The corresponding property in the DevExpress columns is called FieldName

+1
source

All Articles