0

私はTelerik DropDownを持っています

 @(Html.Telerik().DropDownList().Name("DropDownList").HtmlAttributes(new {style = "width:274px"}))

このために、次のようなルールの変更に従って、この要素の幅を動的に設定する必要があるViewmodelがあります

.HtmlAttributes(new {style = "width:@model.DynamicWidth"}))

このアプローチは可能ですか?もしそうならどのように?

4

1 に答える 1

1

そのはず:

.HtmlAttributes(new {style = "width:" + @model.DynamicWidth}))

私はそれをチェックしませんでした。

于 2012-08-28T08:31:23.843 に答える