Are the data binding Urls encapsulated in the Telerik MVC Grid Client Side object?
Scenario is; I'm tapping in to a onSave client side event for some validations. After validations are passed I need to post to Insert Databinding Url conditionally based on user confirmation.
NOTE : I can't use javascript confirm 开发者_Python百科to hold the thread as I'm using jQuery UI dialog for confirmation
The insert url is exposed as ajax.insertUrl
:
var grid = $("#Grid").data("tGrid");
var insertUrl = grid.ajax.insertUrl;
精彩评论