网格列作为对模型项执行操作的按钮

时间:2018-01-26 01:02:19

标签: html asp.net model-view-controller

我的网格看起来像这样 -

@{
                    var grid = new WebGrid(source: Model.products,
                            rowsPerPage: 40);

                    }
                    @grid.GetHtml(
                                   tableStyle: "gridtable",
                          alternatingRowStyle: "even",
                      columns: grid.Columns(
                                      grid.Column("ProductName", "Product"),
                                      grid.Column("Price", "Price"),
                                      grid.Column("Quantity", "Left:"),
                                      grid.Column("Image", header: "Image", format: @<text><img src="@item.Image" width="250px" height="200px"></img></text>)
  )
                 )

我想添加一个列,显示每行的按钮,按下后,将当前项的属性减少1,然后弹出一条消息。 我该怎么办?

0 个答案:

没有答案