MVC4 Web アプリケーションで Web グリッドを使用しています。ページに検索機能があります。Web グリッドは正常に動作します。つまり、検索が実行されなくなるまで、並べ替えとページングは正常に動作します。検索の実行時に Web グリッドを並べ替えると、検索結果だけが並べ替えられるのではなく、アイテムのリスト全体が並べ替えられます。
デバッグしたところ、並べ替えのために Web グリッド ヘッダーをクリックすると、HttpPost ではなく HttpGet メソッドにリダイレクトされることがわかりました。HTTPPOST がヒットした場合、この問題は解消されると確信しています。
グーグルで検索してみましたが、具体的な答えは見つかりませんでした。どんな助けや指針も大歓迎です。私の問題が明確であることを願っています。
コントローラ:
public ActionResult Index()
{
var item = GetAllActors();
return View(item);
}
[HttpPost]
public ActionResult Index(string SearchContion, FormCollection collection)
{
var item = GetAllActors();
List<ActorBE> listOfItems = new List<ActorBE>();
if (item != null && collection != null)
{
if (!string.IsNullOrEmpty(SearchContion))
{
List<string> searchResults = item.FindAll(s => s.ActorName.IndexOf(SearchContion, StringComparison.OrdinalIgnoreCase) >= 0).Select(p => p. ActorName).ToList();
foreach (var data in searchResults)
{
ActorBE actor = new ActorBE ();
actor = item.Where(l => l.ActorName == data).FirstOrDefault();
listOfItems.Add(actor);
}
return View(listOfItems);
}
else
{
return View(item);
}
}
else
{
return View();
}
}
意見:
@model IEnumerable<Tool.DataService.ActorBE>
@{
ViewBag.Title = "Actor";
Layout = "~/Views/Shared/_Layout.cshtml";
WebGrid grid = new WebGrid(rowsPerPage: 50, canPage: true, canSort: true);
grid.Pager(WebGridPagerModes.All);
grid.Bind(Model, rowCount: Model.ToList().Count());
}
@using (Html.BeginForm())
{
@Html.ValidationSummary(true)
<div style="padding: 2px 2px 2px 2px;">
<fieldset>
<legend>Search</legend>
<header>
<div class="content-wrapper">
<div class="float-left">
<label style="display:inline;margin-right:5px">Actor Name</label>
@Html.TextBox("SearchContion")
<input type="submit" value="Search" name="Search" style="border-radius:5px;margin-left:5px;"/>
</div>
</div>
</header>
</fieldset>
</div>
@grid.GetHtml(htmlAttributes: new
{ id = "grid" },
tableStyle: "webgrid",
headerStyle: "webgrid-header",
footerStyle: "webgrid-footer",
alternatingRowStyle: "webgrid-alternating-row",
selectedRowStyle: "webgrid-selected-row",
firstText:"First",
lastText:"Last",
nextText:"Next",
mode: WebGridPagerModes.All,
previousText:"Previous",
rowStyle: "webgrid-row-style", columns: grid.Columns
(
grid.Column("ActorID",header:"Actor ID, style:"column", canSort:true),
grid.Column("ActorName",header:"Actor Name", style:"width:200px", canSort:true),
grid.Column
("",
header:"Actions",
format:@<text>
@Html.ActionLink("Edit", "Edit", new { id = item.ActorID })
@if (item.IsActive)
{
@Html.ActionLink("Deactivate", "Delete", new { id = item. ActorID })
}
</text>
)
)
)
}
ユーザーがアクター名を検索すると、検索結果が適切に表示されます。検索が終了すると、ユーザーが Web グリッド ヘッダーをクリックすると、検索結果が適切に保持されず、制御が HTTPPOST メソッドではなく HttpGET メソッドに再び移動します。これが主な問題です。
この問題を解決する方法を教えてください