0

asp.net mvc4 を使用しています。そして、私の見解では、剣道UI GPLバージョンを使用して設計していますが、ここでは剣道のjavascriptのみを使用しています。

<div id="grid" style="width:500px"></div>
         <script>
             $(document).ready(function () {
                 $("#grid").kendoGrid({
                     dataSource: {                             
                         transport: {
                             read: { url: "Movies/Index", dataType: "json" }
                         },
                         schema: {
                             model: {
                                 fields: {
                                     ID:{type:"number"},
                                     Title: { type: "string" },
                                     ReleaseDate: { type: "date" },
                                     Price: { type: "number" },
                                     Genre: { type: "string" }
                                 }
                             }
                         },
                         pageSize: 10,
                         serverPaging: true,
                         serverFiltering: true,
                         serverSorting: true,                           

                     },
                     height:230,
                     filterable: true,
                     columnMenu: true,
                    groupable: true,
                         sortable: true,
                         pageable: true,
                         columns: [
                             {
                                 field: "ID",
                                 width: 90,
                                 title: "ID"
                             }, {
                         field: "Title",
                         width: 90,
                         title: "Title"
                     }, 
                     {
                         field: "Genre",
                         width: 90,
                         title: "Genre"
                     }, {
                         width: 100,
                         field: "Price"
                     },  {
                         field: "ReleaseDate",
                         title: "ReleaseDate",
                         template: '#= kendo.toString(ReleaseDate,"dd MMMM yyyy") #'
                     }
                     ]
                 });
             });

私のコントローラーではjsonアクションを使用しています:

public JsonResult Index()
        {
            try
            {
                var ind = db.Movies.Select(a => new Models.Movie
                {
                    ID = a.ID,
                    Title = a.Title,
                    Genre = a.Genre,
                    Price = a.Price,
                    ReleaseDate = a.ReleaseDate
                }).OrderBy(a => a.Title);


                return this.Json(ind, JsonRequestBehavior.AllowGet);
            }catch(Exception)
            {
                throw;
                }
        }

しかし問題は、データがビューにフェッチされないことです。どんな助けでも大歓迎です。

4

0 に答える 0