0

I want to store a grid data to a table in database.

Grid which i use is Kendo Grid //View

 @(Html.Kendo().Grid<OnlineAB.Models.Sales>()
.Name("SalesGrid")
.Columns(columns =>
{
    columns.Bound(p => p.Resource).Width(150);
    columns.Bound(p => p.Customer).Width(150);
    columns.Bound(p => p.GS).Width(150);
    columns.Bound(p => p.Price).Width(150);
})
.Sortable()
)

Can anyone help me in how to store these column values to a database. When we click an "Save" button. This action is to be performed.

And also i want to add "DropDown Box" in the Column Customer. That dropdown will hold a set of data.

4

1 回答 1

0

去剑道官方网站的演示。如果您离开服务器端包装器并希望使用 httm 5,我可以为您提供帮助。我最近做了这种事情。

于 2013-07-17T06:07:18.873 回答