asp.net mvc - telerik mvc combobox copy and initialize -
i using telerik combobox , using jquery make clone of it.
the control being rendered correctly, dropdown not working believe due fact javascript has not been initialized on control.
is there way or better way make duplicate of control?
i may have resort making ajax request ideally keep clientside.
cheers,
mark
after clone need attach ajax call follows.
var c = $('rowtemplate').clone(); c.find('selectortogetinputcontrol').tautocomplete({ ajax: { "selecturl": "your ajax call" },filter: 1 });
Comments
Post a Comment