cnest
cnest

Reputation: 3

XtraGrid - Databinding two-dimensional data?

I have a two-dimensional data that needs to be displayed on a grid. Each cell contains a double value identified by row and column. I can use DataTable to display the data, but I need more flexibility (an editable grid that allows user to insert/delete row or column, as well as fire cell-level value change event). I've been trying to find a way to databind two-dimensional data to gridview. I tried databinding double[,] and BindingList<BindingList<double>>. Is there a way to achieve this using XtraGrid?

Upvotes: 0

Views: 802

Answers (1)

Saif Khan
Saif Khan

Reputation: 18812

The XtraGrid doesn't natively support such binding. There is a work-around here.

Have you considered

  • Master-Detail view
  • Their Pivot Grid

Upvotes: 1

Related Questions