我有一个 Telerik DropDown
@(Html.Telerik().DropDownList().Name("DropDownList").HtmlAttributes(new {style = "width:274px"}))
为此,我有一个 Viewmodel,我需要根据规则中的更改动态设置此元素的宽度,例如
.HtmlAttributes(new {style = "width:@model.DynamicWidth"}))
这种方法可能吗?如果是这样怎么办?