Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
My work mate and I are trying to get information out from Telerik's Backend. We are trying to pull out a timetable list for the Backend. Can anyone see where we are going wrong?

Here is the script code:

<div class="eventsLayout">
    <h3>#:Event#</h3>
    <p>Time: #:kendo.toString(Start_Time, "E")# - #:kendo.toString(End_Time, "E")#</p>
    <p>Room: #:kendo.toString(Room, "E")#</p>
</div>

<script>
     function mobileListViewPressToLoadMore() {

     var tdataSource = new kendo.data.DataSource({
                transport: {
                    data:"odata",
                    read: {
                        url: "http://api.everlive.com/v1/DsdZIJppozhafPu5/Events",
                        dataType: "json"
                    }
                }

            });

                alert("");
                alert(tdataSource);
                alert(tdataSource.toString());
          }
    </script>
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900