I have a grid with a custom command column for delete. I have also configured the Destroy method using additional parameters which is supported
.Destroy("DeleteAction", "MyController", new { extraId = Model.Id })
I should mention that the Create function is not defined since I am not going to use it.
When I press the button I was getting nothing. After attaching to the error event I got an exception with Not Found. After further investigation I saw that instead of calling Destroy method it was calling Create. I define also the Create and confirmed that the telerik grid on delete button was calling create method.
Since Destroy does not support the parameter routeValues why is it available?