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

Will KendoUI offer an integrated middle tier?

1 Answer 50 Views
Data Source
This is a migrated thread and some comments may be shown as answers.
Ben Hayat
Top achievements
Rank 2
Ben Hayat asked on 22 Mar 2012, 08:27 PM
The UI stuff is great, but having a server side/middle-tier to build the logic that is integrated with the UI, is the real key to jump in and build application. Having this separation and trying to glue things together, is too time consuming to build LoB apps.

Is the team considering providing a more integrated framework that is a one-stop place to do everything?
Thanks!

1 Answer, 1 is accepted

Sort by
0
Kenneth
Top achievements
Rank 1
answered on 23 Mar 2012, 04:10 AM
This works for what I need at least:

var sharableDataSource = new kendo.data.DataSource({
        transport: {
                read: {
                        url: "/ajaxserver.pl",
                        dataType: "json",
                        data:  {
                                command:'getworksetlist'
                        },
                        complete: function(jqXHR, textStatus) {
                                //jqXHR.responseText will have the raw JSON text in it.
                                handle_ajax_response(jqXHR.responseText);
                        }
                }
        },
        schema:{
            model: model,
            data: 'data'
        }
});

Tags
Data Source
Asked by
Ben Hayat
Top achievements
Rank 2
Answers by
Kenneth
Top achievements
Rank 1
Share this question
or