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

AJAX dataSource not working

4 Answers 364 Views
ListView
This is a migrated thread and some comments may be shown as answers.
Mythox
Top achievements
Rank 1
Mythox asked on 06 Sep 2012, 12:34 PM
This is my code in c#:
public JsonResult SearchRolResults()
        {
            var rol = new Rol { Name = "RolAjax", Domain = "WAF", Id = 123456789 };
            return this.Json(rol);
        }

My code in JS adn HTML:

<ul id="add_window_listview"></ul>

$("#add_window_listview").kendoListView({
        dataSource: {
            transport: {
                read: {
                    url: "/Person/SearchRolResults",
                    type: "GET",
                    dataType: "json",
                    contentType: 'application/json; charset=utf-8'
                }
            }
        },
        template: "<li>${Name} (${Domain})</li>"
    });

The C# ActionMethod is called but the listview not populate !!
How i can debug this scenario??
How i can view the dataSource in debug mode?? (I use chrome now)

Thanks.

4 Answers, 1 is accepted

Sort by
0
Nohinn
Top achievements
Rank 1
answered on 06 Sep 2012, 01:54 PM
Not sure, but maybe you have the issue about not having the get method allowed for json.
You can look at it with a debugger like firebug, or the native one in chrome, etc. looking at the network traffic.

return Json(yourdata, JsonRequestBehavior.AllowGet);
0
Mythox
Top achievements
Rank 1
answered on 07 Sep 2012, 07:46 AM
Hello Nohinn:

Thanks for you replie, you are in correct. 

I modify the c# action method to:
public JsonResult SearchRolResults()
{
     var rol = new Rol { Name = "RolAjax", Domain = "WAF", Id = 123456789 };
     return this.Json(rol, JsonRequestBehavior.AllowGet);
}

But for now, not working yet.

I attach a screenshot of chrome showing the network trafic tab. All apear ok, but treeview not populate. In the "Response" tab i get this text:
{"Name":"RolAjax","Domain":"WAF","Id":123456789}

 Â¿Where i can obtain more debug info?

I modified my JS too:

$("#add_window_listview").kendoListView({
        dataSource: {
            transport: {
                read: {
                    url: "/Person/SearchRolResults",
                    type: "GET",
                    dataType: "json",
                    contentType: 'application/json; charset=utf-8'
                }
            }
        },
        //dataSource: {
        //    data: [
        //        { Name: "Rol1", Domain: "WAF", Id: "123456" },
        //        { Name: "Rol2", Domain: "Telefónica", Id: "1234356" }
        //    ]
        //},
        template: "<li>${Name} (${Domain})</li>",
        change: function () {
            alert("CHANGE")
        },
        dataBound: function () {
            alert("BOUND")
        }
    });

With declarative dataSource the treeView is populated as well.
When page load the event dataBound is raised correctly.

¿Any idea?

Thanks.
0
Accepted
Nohinn
Top achievements
Rank 1
answered on 07 Sep 2012, 08:29 AM
Your js code should look like this:
$("#add_window_listview").kendoListView({
        dataSource: {
            transport: {
                read: {
                    url: "/Person/SearchRolResults",
                    type: "GET",
                    dataType: "json",
                    contentType: 'application/json; charset=utf-8'
                }
            }
        },
        template: kendo.template("<li>${Name} (${Domain})</li>"),
        change: function () {
            alert("CHANGE")
        },
        dataBound: function () {
            alert("BOUND")
        }
    });

And in your server method you should return a list of rols, though it only has one item. Don't send the class object, send a list of objects.
public JsonResult SearchRolResults()
{
     var list = new List<Rol>();
     var rol = new Rol { Name = "RolAjax", Domain = "WAF", Id = 123456789 };
     list.Add(rol);
     return this.Json(list, JsonRequestBehavior.AllowGet);
}
0
Mythox
Top achievements
Rank 1
answered on 07 Sep 2012, 08:55 AM
Thanks a lot, now is working ...

:P
Tags
ListView
Asked by
Mythox
Top achievements
Rank 1
Answers by
Nohinn
Top achievements
Rank 1
Mythox
Top achievements
Rank 1
Share this question
or