0

在 MVC 4 中使用 Kendo UI。

我在 table.td 中有一个这样定义的下拉列表:

 @(Html.Kendo().DropDownListFor(model => model.AppUserStatus)
                                      .DataTextField("Text")
                                      .DataValueField("Value")
                                      .BindTo(@ViewBag.StatusList)

                                      )

如何让它填充它包含的 table.td 的宽度?

4

1 回答 1

2

您可以通过HtmlAttributes方法直接使用包装器添加属性。在你的情况下,以下应该做的工作:

.HtmlAttributes(new { style = "width:100%;" })
于 2012-12-02T11:05:30.350 回答