私はTelerik DropDownを持っています
@(Html.Telerik().DropDownList().Name("DropDownList").HtmlAttributes(new {style = "width:274px"}))
このために、次のようなルールの変更に従って、この要素の幅を動的に設定する必要があるViewmodelがあります
.HtmlAttributes(new {style = "width:@model.DynamicWidth"}))
このアプローチは可能ですか?もしそうならどのように?