在 MVC 4 中使用 Kendo UI。
我在 table.td 中有一个这样定义的下拉列表:
@(Html.Kendo().DropDownListFor(model => model.AppUserStatus)
.DataTextField("Text")
.DataValueField("Value")
.BindTo(@ViewBag.StatusList)
)
如何让它填充它包含的 table.td 的宽度?