Posted 24 Jul 2012 Link to this post
jQuery(function(){jQuery("#Grid").kendoGrid() here getting error "kendoGrid" Object doesnt support this method or property
Posted 26 Jul 2012 Link to this post
Posted 01 Aug 2012 Link to this post
@(Html.Kendo().Window().Name(
"MyWindow"
)...Visible(
false
))
<script>
$.ajax({
type:
'POST'
,
url:
'@Url.Action("_GridPartial", "Controller")'
data:
'id=1&arg1=abc&etc'
sucess:
function
(response) {
var
wnd = $(
'#MyWindow'
).data(
'kendoWindow'
);
wnd.content(response);
wnd.center().open();
},
error:
(request, status, error) {
// Handle error
}
}); </script>
Posted 09 Aug 2012 Link to this post
@Scripts.Render("~/bundles/jquery")
@RenderSection("scripts", required: false)
Posted 20 Oct 2012 Link to this post