Hey,
I've run into a problem with a webpage I'm building. I have a WebDataGrid that has an oracle table as a datasource, and I've enabled the editing core behaviors to support editing individual cells in the rows. Whenever I edit a cell and refresh the page, it throws an error
"Sys.WebForms.PageRequestManagerServerErrorException: Original data source does not support updates."
google has been unhelpful, and I'm not sure which direction to head. I had a problem with an invalid DataKeyField earlier, but as soon as I resolved that, this appeared.
Hi testhandle,
You are probably using AutoCrud to do updating. You are correct that you need the data key fields set. But when you set up the DataSource object on the page, you need to be sure that it allows updates, adds, or deletes. Otherwise, our code cannot modify it.
regards,David Young
Hi Dave,
I am using AUTOCRUD to update, and I have the DataKeyField set to the primary key on the table. I'm using a SQLDataSource in VB2008 configured for an Oracle table to fill my Grid. I'm not sure how to allow updates, adds, or deletes on my table.
Is it something I need to change in the html for the table? Or is it a property in the editing core?