I'm using the RadGrid with in-grid, batch editing enabled. I have the edit columns automatically generated for the rad grid. If I have one item, and I edit all the fields, I can get these changes after hitting my "update" button on the screen by:
masterTableView.GetBatchColumnEditor(myColumn) as GridTextBoxColumnEditor.TextBoxControl;
I can do this for all of my cells. But when I have more than one item in my grid, this editor only reflects the changes to the most recently changed object. When looking throughout the masterTableView and the Edit manager, it seems there is only one of these editor controls for each column, not one for each cell. Reading online, it seems there should be one for every cell. Am I understanding this correctly, or is this a limitation of radgrid?
masterTableView.GetBatchColumnEditor(myColumn) as GridTextBoxColumnEditor.TextBoxControl;
I can do this for all of my cells. But when I have more than one item in my grid, this editor only reflects the changes to the most recently changed object. When looking throughout the masterTableView and the Edit manager, it seems there is only one of these editor controls for each column, not one for each cell. Reading online, it seems there should be one for every cell. Am I understanding this correctly, or is this a limitation of radgrid?