谁能展示WebGridRow.GetSelectUrl()、WebGridRow.GetSelectLink()和WebGrid.GetContainerUpdateScript()的示例以及何时使用它们?真的很难在这些(任何地方)上找到任何东西。
提前致谢。
谁能展示WebGridRow.GetSelectUrl()、WebGridRow.GetSelectLink()和WebGrid.GetContainerUpdateScript()的示例以及何时使用它们?真的很难在这些(任何地方)上找到任何东西。
提前致谢。
我正在使用 mvc4,只使用了 WebGrid.GetContainerUpdateScript(string) 。
它是生成一个 javascript 行,可用于客户端脚本以通过 ajax 重新加载 webgrid。
字符串参数是服务器 api/url
string url = Html.ActionLikc(action, controller, whatever-else);
string javascriptReloard = YouWebGrid.GetContainerUpdateScript(url);
@Html.Raw(javascriptReloard);
输出类似于: $("#ContainerId").swhgLoad("server-url")