Hi guys,
I was looking for a way to update the dataSource of the DropDownList dynamically, without recreating the control again. Take this code from your DropDownList example:
Do i need to recreate the dropdownlist input, or is there an easy way to replace the dataSource of the control and have it rebind?
Also, is there more documentation or complex examples coming before November, or will this be released in November along with the new controls?
Thanks,
Tony
I was looking for a way to update the dataSource of the DropDownList dynamically, without recreating the control again. Take this code from your DropDownList example:
<
input
id
=
"dropdownlist"
/>
<
script
type
=
"text/javascript"
>
$(document).ready(function() {
$("#dropdownlist").kendoDropDownList([{text: "Item1", value: "1"}, {text: "Item2", value: "2"}]);
});
</
script
>
Do i need to recreate the dropdownlist input, or is there an easy way to replace the dataSource of the control and have it rebind?
Also, is there more documentation or complex examples coming before November, or will this be released in November along with the new controls?
Thanks,
Tony