This is a migrated thread and some comments may be shown as answers.

Kendo grid refresh issue

0 Answers 33 Views
AJAX and Web 2.0
This is a migrated thread and some comments may be shown as answers.
Dayana Maliyakal
Top achievements
Rank 1
Dayana Maliyakal asked on 11 Jun 2014, 05:00 AM
Hi,

How to refresh kendo mvc grid on checkbox checked event

I have used the following code.But it is not working

 $(document).ready(function () {
        $("#chkClosedItems").click(function () {
           
            read:( {

                dataType: "json",

                url: "/ucTest/Test?ProjectItemID="
                              + 1
                             + "&ProjectID=" + 1
                               + "&isChkClosed=" + isChkClosed,

                    cache: false

            })

           
            $("#grid").data("kendoGrid").dataSource.read();

            
        });

No answers yet. Maybe you can help?

Tags
AJAX and Web 2.0
Asked by
Dayana Maliyakal
Top achievements
Rank 1
Share this question
or