我在部分视图中将动态选择的列显示为网格(使用 webgrid)。当我在部分视图 webgrid 上执行分页时,该部分视图网格单独在新页面中再次加载。我想在不重定向部分视图的情况下获得部分视图的分页单独进入newpage。
问问题
3572 次
1 回答
0
从您提供的代码来看,您似乎将 ajaxUpdateContainerId 设置为“结果”,但您的页面上没有任何具有该 id 的控件,您可以通过提供 HtmlAttributes 在 .GetHtml() 方法中设置 id。
所以编辑后的行看起来像这样:
@grid1.GetHtml(htmlAttributes: new { id="result" },tableStyle: "WebGrid", headerStyle: "Header", alternatingRowStyle: "alt", columns: ViewBag.Columns)
请检查此链接以获取更多详细信息
于 2013-07-03T19:20:28.183 回答