i am looking this feature
1)dynamically adding columns/cell (like excel)
2)dynamically adding rows (like excel)
3)dynamically merge the seleted cell (like excel)
4)dynamically how sign freeze for cell and row (like excel)
5)how to read the cell value through c# code
i am looking for garde book fuctionaly look like a excel fetaure ,but that will not dependent on client
i check your webgrid,i can get merge selected cells
Hi,
1. It is possible to add columns dynamically, with our UnboundColums
2. You can add rows dynamically as well, although the best approach would be to hook the grid to a collection that implements INotifyCollectionChanged, such as an ObservableCollection
3. We don't currently have a Merge cell feature
4. We have a fixed column features, however we don't currently offer the ability to freeze a row
5. You can access cells, through their rows and read their values, however that way would be much less performant than reading the value from your datasource directly.
-SteveZ
Is there an event that gets raised just before tabbing out of the bottom-right cell so that you know to add a new row?
The XamGrid doesn't have any such event.
Are you using the AddNewRow feature, where the AddNewRow is set to bottom? B/c when you tab out of it, a new row will automatically be added, assuming some data has changed.
Hi SteveZ,
Is it possible to make data overflow to next cell if the next cell is empty in the grid? Such functionality is avilable in excel that if data in a cell is longer than the cell capacity then it overflow to rith empty cells.
Thanks
The xamGrid does not offer this functionality.