hi,
how do I change the DropDownListItem's text with Javascript?
for example, I wrote this:
<ej:DropDownList ID="DropDownList1">
<Items>
<ej:DropDownListItem Text="Text1" Value="1"></ej:DropDownListItem>
<ej:DropDownListItem Text="Text2" Value="2"></ej:DropDownListItem>
<ej:DropDownListItem Text="Text3" Value="3"></ej:DropDownListItem>
</Items>
</ej:DropDownList>
$(document).ready(function () {
//what should I write to update the second drop down list item's text
});
Thanks,
Tomer