or
<select id="myOptions"> <option value="0">Some Text</option> <option value="1">Some Other Text</option> <option value="2">Third Option Text</option> </select>...$("#myOptions option[value='0']").text(getUpdatedText(0));$("#myOptions option[value='1']").text(getUpdatedText(1));$("#myOptions option[value='2']").text(getUpdatedText(2));<select id="myOptions"> <option value="0">Some Text</option> <option value="1">Some Other Text</option> <option value="2">Third Option Text</option> </select> ... $("#myOptions").kendoDropDownList();$("#myOptions option[value='0']").text(getUpdatedText(0));$("#myOptions option[value='1']").text(getUpdatedText(1));$("#myOptions option[value='2']").text(getUpdatedText(2));$("#myOptions").data("kendoDropDownList").refresh();[{title: "Star Wars: A New Hope", year: 1977}, {title: "Star Wars: The Empire Strikes Back", year: 1980}]<script type="text/javascript" > $(document).ready(function(){ var sharableDataSource = new kendo.data.DataSource({ transport: { read: { url:"contract/test.jsp", dataType: "json" } } }); $("#grid").kendoGrid({ dataSource: sharableDataSource, columns: [ { title: "title", field: "title", width: 130}, { title: "year", field: "year",width: 100},], height: 550, groupable: false, scrollable: true, sortable: true, pageable: true }); });</script>