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

How to insert data to data grid

2 Answers 133 Views
Grid
This is a migrated thread and some comments may be shown as answers.
rooney
Top achievements
Rank 1
rooney asked on 09 Oct 2012, 09:16 AM
Hii,

Look at this :
$(document).ready(function () {
     var crudServiceBaseUrl = "http://demos.kendoui.com/service",
     dataSource = new kendo.data.DataSource({
     transport: {
            read:  {
                     url: crudServiceBaseUrl + "/Products",
                     dataType: "jsonp"
            },                  
            create: {
                     url: crudServiceBaseUrl + "/Products/Create",
                     dataType: "jsonp"
            },
.....

i'am using PHP, so how to retrieve data jsonp in page /Products/Create?
i want to insert that data to database

Thank,

2 Answers, 1 is accepted

Sort by
0
Nohinn
Top achievements
Rank 1
answered on 09 Oct 2012, 10:32 AM
You can take a look at this post where I posted the php code for a crud implementation of the grid.
0
rooney
Top achievements
Rank 1
answered on 10 Oct 2012, 03:06 AM
Thank Nohinn, it's working
Tags
Grid
Asked by
rooney
Top achievements
Rank 1
Answers by
Nohinn
Top achievements
Rank 1
rooney
Top achievements
Rank 1
Share this question
or