Hello:
Can you insert new rows on top of the grid? What I would like to do is basically to set the data source to be a DataTable and be able afterwards to insert rows/col on top of the first row. Is this possible? If not what would be a sensiblie approach to achieve this?
Thanks,
Mihail
Hi Mihail,
I don't know of any samples of this. But it sounds like what you want to do here is add a row to the grid and set the Fixed property of the row to true.
Thank Mike, i will give it a try. Any chance of an example somewhere of a grid with multiple column rows/headers (bound or unbound).
Well, it sounds like you could use Fixed Rows for this.These rows would have to be part of the data source, though. There's no such thing as an unbound row.
Mike:
I thought that I can have drop down in a column header, obviously not. The top 5 rows that I need to insert and the combination of combo boxes/text that I need to add for each cell of these rows will dictate the specific column behavior for transfer/save in a DB, in a way a multiple column headers for lack of better terms. They are not part of the data but I still want to use the data table as a data source instead of loading the grid row by row. So I need a way to use a data source and be able to insert rows that will act as multiple column headers for the grid. Hope that I clarify a bit what I need to do.
Hm, I'm not sure I understand the question. A column header can't have a dropdown in it. So if these cells are going to have dropdowns, then they need to be actual cells, you can't use a columnor group header. Unless you want to try to position a combobox control over the header or something like that.