This question is locked. New answers and comments are not allowed.
Hello.
I'm using the following code to pass parameter in Insert() command:
Is there any way to get passed value in [HttpPost] Insert() Action? For now it is always = 0. Select action is Ok.
It seems, the only solution is here
I'm using the following code to pass parameter in Insert() command:
.DataBinding(dataBinding => dataBinding.Ajax() .Select("Select", "ControllerName", new { Id = "<#= Id #>" }) .Insert("Insert", "ControllerName", new { Id = "<#= Id #>" }) .Update("Update", "ControllerName"))Is there any way to get passed value in [HttpPost] Insert() Action? For now it is always = 0. Select action is Ok.
It seems, the only solution is here