繁体   English   中英

下拉列表值更改后的MVC3填充数据

[英]Mvc3 fill data after dropdownlist value changed

我的表格包含一些用于填充数据的文本。 我想在下拉列表更改后在文本框中填充数据。

MyView.chstml

@model BloodBank.Models.NewCamp

@{
  ViewBag.Title = "New Camp";
  Layout = "~/Views/Shared/_Layout - Menu.cshtml";
}

<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>

<script type="text/javascript">
$(function () {
    $("select#OrganisationID").change(function (evt) {

        if ($("select#OrganisationID").val() != "0") {

            $.ajax({
                url: "GetOrganizationInfo?orgID=" + $("select#OrganisationID").val(),
                type: 'POST',
                data: { OS: $("select#OrganisationID").val() },
                success: function (response) {
                    $("select#OrganisationID").replaceWith(response)
                },
                error: function (xhr) {
                    alert("Something went wrong, please try again");
                }
            });
        }
    });
});
</script>


 @using (Html.BeginForm())
 {
@Html.ValidationSummary(true, "New Camp creation was unsuccessful. Please correct the errors and try again.")
    <div>
    <table style="border-style:none;border-width:0;border:0;">
        <tbody>
        <tr>
            <td style="border:0;vertical-align:middle;">
                <div class="editor-label">
                    @Html.LabelFor(m => m.OrganisationID)                            
                </div> 
            </td>
            <td style="border:0;">
                <div class="editor-field">

                     @Html.DropDownListFor(m => m.OrganisationID, (SelectList)ViewBag.OrganisationList)&nbsp; &nbsp; &nbsp; &nbsp;

                    @* <select id="Area">                            
                        @foreach (var arearow in (SelectList)ViewBag.OrganisationList)
                        {
                            <option value="@arearow.Value">@arearow.Text</option>                                
                        }
                    </select>*@

                    @Html.ActionLink("Add New Organisation", "AddOrganisation", "Organisation", null, null)
                </div>
            </td>
            <td style="border:0;">
                <div class="editor-field">
                    @Html.ValidationMessageFor(m => m.OrganisationID)
                </div>
            </td>
        </tr>

        <tr>
            <td style="border:0;text-align:left;" colspan="2"> <h3>Contact Person Information</h3></td>
        </tr>

        <tr>
            <td style="border:0;">
                <div class="editor-label">
                    @Html.LabelFor(m => m.Email)                            
                </div> 
            </td>
            <td style="border:0;">
                <div class="editor-field">
                    @Html.TextBoxFor(m => m.Email)&nbsp;&nbsp;&nbsp;
                    @Html.ValidationMessageFor(m => m.Email)
                </div>
            </td>
        </tr>

        <tr>
            <td style="border:0;">
                <div class="editor-label">
                    @Html.LabelFor(m => m.FirstName)                            
                </div> 
            </td>
            <td style="border:0;">
                <div class="editor-field">
                    @Html.TextBoxFor(m => m.FirstName)&nbsp;&nbsp;&nbsp;
                    @Html.ValidationMessageFor(m => m.FirstName)
                </div>
            </td>
        </tr>

        <tr>
            <td style="border:0;">
                <div class="editor-label">
                    @Html.LabelFor(m => m.LastName)                            
                </div> 
            </td>
            <td style="border:0;">
                <div class="editor-field">
                    @Html.TextBoxFor(m => m.LastName)&nbsp;&nbsp;&nbsp;
                    @Html.ValidationMessageFor(m => m.LastName)
                </div>
            </td>
        </tr>

        <tr>
            <td style="border:0;">
                <div class="editor-label">
                    @Html.LabelFor(m => m.Phone)                            
                </div> 
            </td>
            <td style="border:0;">
                <div class="editor-field">
                    @Html.TextBoxFor(m => m.Phone)&nbsp;&nbsp;&nbsp;
                    @Html.ValidationMessageFor(m => m.Phone)
                </div>
            </td>
        </tr>

        <tr>
        <td colspan="2" style="border:0;text-align:center;">

        </td>
        </tr>
        </tbody>
    </table>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <input type="submit" value="Submit" id="ClickMe" class="cssLoginButton blue"/>
</div>
}

我的行动

    [Authorize]
    [OutputCache(Location = OutputCacheLocation.None)]
    public ActionResult NewCamp()
    {
            var user = (BloodBank.Security.BloodBankMembershipUser)Membership.GetUser();
            this.BindOrganisations(user.BloodBankID);
            return View();        
    }

    public ActionResult GetOrganizationInfo(string orgID)
    {
        if (!string.IsNullOrEmpty(orgID))
        {
            var model = (new UserManager()).GetCampPersonOrganisationDetailsByOrganisationID(orgID);
            Models.NewCamp newcampModel = new Models.NewCamp();

            if (model.Count > 0)
            {
                newcampModel.CampID = model[0].CampID;
                newcampModel.Organisation = "";
                newcampModel.OrganisationID = model[0].OrganisationID;
                newcampModel.FirstName = model[0].FirstName;
                newcampModel.LastName = model[0].LastName;
                newcampModel.Email = model[0].Email;
                newcampModel.Phone = model[0].Phone;

                var organisations = this.GetOrganisations(model[0].BloodBankID);
                if (organisations != null)
                    ViewBag.OrganisationList = new SelectList(organisations, "OrganisationID", "NameCity");
            }

                return View("NewCamp", newcampModel);
        }
        else
            return View();
    }

我无法在表格中填写数据。 我不明白为什么我无法填充数据。 脚本或代码是否有变化? 在下拉列表值更改后,是否有任何示例来填充数据?

---------更新------------

我曾在一个示例项目中尝试过类似的事情。 在这里,我可以获取值并显示在文本框中,但是每次从下拉菜单中选择操作系统时 ,都会在同一视图上添加一个视图 ,如下面的屏幕截图所示。

屏幕截图

您发布的代码中唯一的缺陷可能是缺少;

success: function (response) {
    $("select#OrganisationID").replaceWith(response);
},

大家好,我已经解决了我的问题。 无需创建任何javascript 我没有使用javascript就解决了这个问题。

@Html.DropDownListFor(m => m.OrganisationID, (SelectList)ViewBag.OrganisationList, new { onchange = "document.location.href = 'NewCamp?orgID=' + this.options[this.selectedIndex].value;" })

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM