我在Webgrid的底部插入了“添加新记录”和“全部保存”链接按钮。但是我希望他们能够成为WebGrid
的页脚。我已经搜索了很多,但一无所获。有人可以告诉我如何在WebGrid
的“页脚”中添加链接或按钮。
以下是我的WebGrid
@model IEnumerable<MvcGrid2.Models.Employee>
@{
WebGrid grid = new WebGrid(
source: Model,
rowsPerPage: 4);
}
@grid.GetHtml(htmlAttributes: new { id = "WebGrid1" },
tableStyle:"gridTable",
headerStyle: "gridHead",
footerStyle: "gridFooter",
rowStyle: "gridRow",
alternatingRowStyle: "gridAltRow",
mode: WebGridPagerModes.All,
firstText: "<<",
previousText: "<",
nextText: ">",
lastText: ">>",
columns: grid.Columns(
@* grid.Column( columnName : "EmployeeId",
format: @<text>@item.EmpId</text>),*@
grid.Column(columnName: "Employee Id",
format: @<span>
<span id="spanEmpId_@(item.EmpId)">@item.EmpId</span>
@Html.TextBox("EmpId_" + (int)item.EmpId, (int)item.EmpId, new { @style = "display:none" })
</span>),
grid.Column(columnName: "Employee Name",
format: @<span>
<span id="spanEmpName_@(item.EmpId)">@item.EmpName</span>
@Html.TextBox("EmpName_" + (int)item.EmpId, (string)item.EmpName, new { @style = "display:none" })
</span>),
grid.Column(columnName: "Designation",
format: @<span>
<span id="spanEmpDesg_@(item.EmpId)" >@item.Designation</span>
@Html.TextBox("EmpDesg_" + (int)item.EmpId, (string)item.Designation, new { @style = "display:none" })
</span>),
grid.Column(columnName: "Action",
format: @<text>
<a href="#" id="Edit_@(item.EmpId)" class="edit">Edit</a>
<a href="#" id="Update_@(item.EmpId)" style="display:none" class="update">Update</a>
<a href="#" id="Cancel_@(item.EmpId)" style="display:none" class="cancel">Cancel</a>
<a href="#" id="Save_@(item.EmpId)" style="display:none" class="save">Update</a>
<a href="#" id="iCancel_@(item.EmpId)" style="display:none" class="icancel">Cancel</a>
<a href="#" id="Delete_@(item.EmpId)" class="delete">Delete</a>
</text>)
))
答案 0 :(得分:1)
WebGrid本身没有可修改的页脚。但是,如果您查看tutorial on ASP.NET,您将看到在css中实现这一目标的方法。
你可以做的是让你的最后一行与你的页脚相同的css类,或者你可以用javascript插入你的按钮/链接。这两种方法都不干净,但据我所知,如果不重写控件,就没有更好的方法来实现目标。很多人建议调查Telerik的控件,如果你已经/可以获得他们的东西的许可证。