ajax を介してページングする WebGrid を含む部分ビューを含むビューがあります。しかし、WebGrid がどのページにあるかを親ビューに認識させるのに問題があります。私が達成しようとしているのはこれです: 新しいページに移動するビューを含む「作成」ボタンがありますが、現在のページ # をクエリ文字列パラメーターとして新しいページに渡したいのですが、作成をキャンセルした場合、元のビューはデフォルトで最初のページをロードするのではなく、前のページでロードされます。
私が見ている問題は、部分ビューのグリッドが更新されたときに、親ビューのモデルが変更されないことです。また、ajaxUpdateCallback のメソッドを作成することはできますが、現在のページが何であるかをこのメソッドに伝える方法がわかりません。
私のコードの関連セクションは次のようになります。
<div id="divList">
@Html.Partial("_MatterList", Model) //This is where the grid is defined
</div>
<br/>
<div id="newSection">
<input type="button" value="New Matter" onclick="newMatter();"></input>
</div>
<script type="text/javascript">
var _Page; //I tried creating a javascript variable to hold the page, but can't get it to populate with anything but the default 1.
function newMatter()
{
var urlAction = "@Url.Action("Create", "Matter", new { area = "Admin" })";
var subclientid = $("#SubClientID > option:selected").attr("value"); //defined in a form not displayed here
var clientid = $("#ClientID > option:selected").attr("value");//defined in a form not displayed here
redirect(urlAction, clientid, subclientid);
}
function redirect(urlAction, clientid, subclientid) {
if(clientid > 0 || subclientid > 0 ) {
urlAction += "?";
}
if(clientid > 0) {
urlAction += "clientid=" + clientid;
if(subclientid > 0) {
urlAction += "&subclientid=" +subclientid;
}
}
//I want to be able to add page in here as well. a la &page=_Page
window.location = urlAction;
}
_MatterList 部分ビュー:
<div id="matterListing">
@{
var grid = new WebGrid<Matter>(null, rowsPerPage: 10, canSort: false, defaultSort: "Name", ajaxUpdateContainerId: "matterListing",ajaxUpdateCallback:"afterUpdate");
grid.Bind(Model.Matters, rowCount: Model.TotalRows, autoSortAndPage: false);
@grid.GetHtml(
tableStyle: "table90",
alternatingRowStyle: "tableAltRows",
headerStyle: "tableHeaders",
columns: grid.Columns(
grid.Column(... //there are a lot of columns, removed them because not important to the problem.
)
)
}
<script type="text/javascript">
function afterUpdate() {
_Page = @Model.PageNumber; //I tried this but it only ever shows 1 because it evaluates when the page first loads. What I need is for it to dynamically get the correct page at execution time.
}
</script>
</div>
afterUpdate メソッドが現在のページでパラメーターを受け取る (つまり、@Model.PageNumber を使用する代わりに afterUpdate(2) を呼び出す) 必要があると考えていますが、WebGrid を強制的に渡す方法がわかりません。コールバックに沿って。誰でもこの問題の解決策を持っていますか?