|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
The EnhancedList is very useful if you just want to use the DevExpress grid in a read-only fashion for displaying data. If you want to use the grid for editing, you'll need to drop a BusinessBindingSource on the form, set the BusinessObject property on the BusinessBindingSource to the business object you want to bind to the list. Then, set the DataSource of the grid to the BusinessBindingSource and the grid will work like normal. You can edit the data and then just call Save() on the business object (or Save() on the form).
|