Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
Underlying DataSource does not support adding new rows
posted

I'm trying to add rows to the grid but I get an error saying.

 Unable to add row:
 Unable to add a new row. Underlying DataSource does not support adding new rows

can someone tell me what I need to do, to make it work?

Parents
  • 469350
    Verified Answer
    Offline posted

     Well, clearly your data source doesn't support adding rows. What kind of data source are you using? It sounds like you are probably using an Array or something limited like that. You will need to use a more robust data source, like an UltraDataSource or a DataTable if you want to support adding. 

Reply
  • 20
    posted in reply to Mike Saltzman

    Hello Mr.Mike Saltzman

    I m using ultragrid in winndows application (C#.net 2010).

    i bind datasource using SQLHelper. And Default option both.

    i want to allow user to add,edit or delete operation on ultragrid. to affect Sql Table.

    when i do any of them(add, edit,delete)in ultragrid does not affect on table.

    plz tell me how can i do this.

Children