0

我想从下拉列表中显示以前选择的项目。到目前为止,我只获得了之前从下拉列表中选择的项目的 id 显示。我想获取项目的文本/描述名称而不是其 ID 号。

这就是我对 viewModel 的看法:

[LocalizedDisplayName("BillingRate", NameResourceType = typeof(User))]
    public short BillingRateId { get; set; }

    [UIHint("DropDownList")]
    [DropDownList(DropDownListTargetProperty = "BillingRateId")]
    public IEnumerable<SelectListItem> BillingRates { get; set; }

这就是我的 .ascx 表单页面:

<%:Html.LabelFor(m => m.BillingRateId)%>
<%:Html.EditorFor(m => m.BillingRateId, Model.BillingRates)%>
<%:Html.ValidationMessageFor(m => m.BillingRateId)%>

当我运行并查看页面时,我会进入描述框:4 什么时候应该是:实习

4

2 回答 2

1

您可以创建一个仅返回该字符串的简单服务,然后使用 jQuery AJAX 填充它。

public ContentResult GetBillingRate(int id)
{
    //get your billing rate
    return this.Content(billing_rate_string, "text/plain");
}

然后在你的javascript中:

$('#BillingRateId').change(function() {
    $.get('@Url.Action("GetBillinRate", "YourController")/' + $(this).val(),
        function(data) { $('#element_you_want_it_to_show_in').html(data); }
    );
});
于 2012-04-23T18:51:27.223 回答
0

另一种方法是制作您自己的 IEnumerable 并将其推送到您的 DropDownList 中。

在您的控制器中:

// this is assuming you can get objects with both name/id for your billing rates 
ViewBag.BillingRates = Db.GetBillingRatesAndNames()
    .Select(x => new SelectListItem() { Text = x.Name, Value = x.Id.ToString() });

在视图中:

<%:Html.EditorFor(m => m.BillingRateId, 
    (IEnumerable<SelectListItem>)ViewBag.BillingItems)%>
于 2012-04-23T21:46:25.183 回答