我正在研究我们在项目中使用的Kendo Widgets。我们一次又一次地使用相同的小部件,我想知道如果我们使用自定义Html Helpers我们可以将一些属性组合在一起的好处。 我想的是一个例子:
public static DropDownListBuilder MyCustomDropDownList(this HtmlHelper helper, Models.Specialty model, string dataCascadeFunction)
{
ResourceService resource = new ResourceService();
return helper.Kendo().DropDownList()
.DataTextField("Name")
.DataValueField("Id")
.OptionLabel("Select Specialty")
.Events(evt => evt.Open("clearFilterOnDdl"))
.DataSource(source =>
{
source.Read(read =>
{
read.Action("GetCascadeSpecialties", "AcAdmin")
.Data(dataCascadeFunction)
.Type(HttpVerbs.Get);
})
.ServerFiltering(true);
})
.Filter("contains")
.MinLength(3)
.Text(model != null ? model.Name?? string.Empty : string.Empty)
.Value(model != null ? model.Id ?? string.Empty : string.Empty);
}
然后我从我的观点中这样称呼它
@(Html.MyCustomDropDownList(Model.Specialty, "filterSpecialties")
.CascadeFrom("OperationType_Id")
.Name("Specialty.Id")
)
我正在做的只是设置一些默认的自定义设置,以便保存一些代码行并使我的代码更清晰。我想知道这种使用Html助手是否会对我的项目的性能产生任何好的或坏的影响。
答案 0 :(得分:2)
重用Kendo UI HtmlHelpers的默认自定义设置的演示方法是有效的,不会对性能产生影响。