.net - How to set images after the names in Kendo drodpdown list? -
i have used html.kendo.dropdownlist, want add edit , delete image @ right hand side of each text.
@(html.kendo().dropdownlist() .name("preferncenamelist") .datatextfield("text") .datavaluefield("value") .events(e => e.change("preferncenamechange")) .bindto(viewbag.preferncenames) .value(model.defaultpreference)
how modify template achieve same ?
if need display images next item content , selected text, need use template
, valuetemplate
options:
check online demo shows how use them:
Comments
Post a Comment