我是MVC的新手,刚刚遇到了我需要一些帮助的场景。我正在使用MVC 4在ASP.NET中创建一个网站。所以根据我的要求我有两个DropDowns我的<select>
页面中是cshtml
标记。
1) selectUniversity
2) selectCollege
我有一个名为College_table
的数据库表,其字段为:
1) Univ_ID
2) Univ_Name
3) College_ID
4) College_Name
5) College_Address
6) College_Contact
现在,在我的selectUniversity
我列出了所有大学名称,selectCollege
所有大学名称都属于在selectUniversity
下拉列表中选择的大学。 WebGrid内容将根据上述任何下拉列表的选择而改变。
我的代码更改: 查看 使用Javascript:
<script type="text/javascript">
function ajaxCallGetColleges() {
var e = document.getElementById("selectUniversity");
var strUniv = e.options[e.selectedIndex].value;
$.ajax({
url: '@Url.Action("GetCollegesActionResult", "CollegeController")',
type: 'POST',
data: { 'data': strUniv },
success: function (ResponceObject) {
alert(ResponceObject);//Need to update this data into WebGrid and selectCollege dropdown.
}
});
}
function ajaxCallGetCollegeDetail() {
var e = document.getElementById("selectCollege");
var strCollege = e.options[e.selectedIndex].value;
$.ajax({
url: '@Url.Action("GetCollegeDetailActionResult", "CollegeController")',
type: 'POST',
data: { 'data': strCollege },
success: function (ResponceObject) {
alert(ResponceObject);//Need to update this data into WebGrid.
}
});
}
</script>
CSHTML代码:
<table>
<tr>
<td>
<select id="selectUniversity" name="selectUniversity" onchange="ajaxCallGetColleges()">
@{
//Logic for adding University names as options to the dropdown dynamically
}
</select>
</td>
<td>
<select id="searchBy" name="searchBy" onchange="ajaxCall()">
<select id="selectUniversity" name="selectUniversity" onchange="ajaxCallGetCollegeDetail()">
@{
//Logic for adding college names as options to the dropdown dynamically
}
</select>
</td>
</tr>
<tr>
<td colspan="2">
<div id="MyGrid">
@{
WebGrid grid = new WebGrid(source: Model,
defaultSort: "Name",
rowsPerPage: 15);
grid.SortDirection = SortDirection.Ascending;
}
@grid.GetHtml(
fillEmptyRows: false,
mode: WebGridPagerModes.All,
firstText: "<< First",
previousText: "< Prev",
nextText: "Next >",
lastText: "Last >>",
columns: new[] {
grid.Column("Univ_ID",header: "Univ ID", canSort: false),
grid.Column("Univ_Name",header: "Univ Name"),
grid.Column("College_ID",header: "College ID", canSort: true),
grid.Column("College_Name",header: "College Name"),
grid.Column("College_Address", header: "College Address", canSort: true),
grid.Column("College_Contact",header: "Contact"),
grid.Column("", header:"Edit", format: (item) => Html.ActionLink("Edit", "Edit", new { univ_ID=item.Univ_ID })),
grid.Column("", header:"Delete", format: (item) => Html.ActionLink("Delete", "Delete", new { univ_ID=item.Univ_ID}, new { onclick="return confirm('Are you sure?');"}))
})
</div>
</td>
</tr>
</table>
CONTROLLER C#.NET代码:
public ActionResult SearchByBranchStatus(string data)
{
List<CollegesDetail> colleges= _collegeService.GetCollegesDetail();
var RespObject = colleges.Where(c => c.Name == data);
return View(RespObject);
}
public ActionResult GetCollegeDetailActionResult(string data)
{
List<CollegeDetail> colleges= _collegeService.GetCollegeDetail();
var RespObject = colleges.Where(c => c.Name == data);
return View(RespObject);
}
我也经历了很多SO以及MSDN网站,但我没有找到任何帮助。请提供任何参考或想法来解决这个问题。我知道与我的问题有关,许多论坛都提出了许多问题,但我没有得到它们。可能是它最简单的一个,但是当我最近开始研究MVC 4时,我没有很好地掌握MVC 4.我急切地等待答案。真的很感激任何帮助。提前谢谢..
注意: - 目前我指的是MSDN Magazine
更新: - 我已经部分回答了我的问题,关于如何通过MVC 4中的Ajax更新DropDown选择更改中的WebGrid
答案 0 :(得分:3)
Finlay我已经使用部分视图解决了这个问题。现在我填写它非常简单。我如何实现的步骤如下:
MainView
和_ MainView
)MainView
是一个部分视图,我将完整的WebGrid
和WebGrid
与Model
绑定在一起。MainView
我将部分视图(_ MainView
)放入div标记,并使用Model
(@Html.Partial("_MainView", Model)
)ActionResult
,并且在成功时我使用返回的部分视图更新了div标记ActionResult
而不是返回完整视图,我返回了部分视图,仅更新了WebGrid
(return PartialView("_MainView", responceObject);
)。我有一个正在运行的示例应用程序。如果有人发现任何困难得到这个答案,那么可以问我。我可以在这里分享完整的工作代码。非常感谢Karthik回答我的问题以及我的所有评论:)