This question is locked. New answers and comments are not allowed.
Hello I have the following doubt and the Telerik documentation is not very clear about how to pass parameters when using the Select/Insert/Update
Right now my problem is that when I Insert a row I cannot use the TryUpdateModel since I'm updating the grid in a collection that is part of the model but not the whole model, so it is failing, so I want to have the collection and the current row sent as parameters, for the collection is quite easy, I just have to do this:
Right now my problem is that when I Insert a row I cannot use the TryUpdateModel since I'm updating the grid in a collection that is part of the model but not the whole model, so it is failing, so I want to have the collection and the current row sent as parameters, for the collection is quite easy, I just have to do this:
But I still cannot find a way to send the current row that was being edited.dataBinding.Ajax().Select("PermGridSelect", "Security", new { permissions = Model.Permissions }).Insert("PermGridInsert", "Security", new { permissions = Model.Permissions }).Update("PermGridSave", "Security", new { permissions = Model.Permissions }).Delete("PermGridDel", "Security", new { permissions = Model.Permissions });