grid CRUD support for asp.net mvc

Do you guys have a way I can use the grid without using connector? I am new to this grid and connector you guys have is for asp.net but it’s not for MVC. I looked at the connector but it’s using raw sql and don’t want to do that.

Is there a way to do CRUD by just extracting json/xml value out from grid using api? so I can do it manually?

thanks much

wil

You may have a look at the dataprocessor component:
docs.dhtmlx.com/doku.php?id=dhtm … cessor:toc

Or you may try to implement all the logic manually.
You may try to use getValue()/setValue() methods for operating:

var val=mygrid.cells(rowID,colInd).getValue(); mygrid.cells(rowID,colInd).setValue(val);