문제

I am using oracle as my back end. how to bind radcombobox with database(oracle) table values form client side. as follows if i have emp table then columns are emp id and name so i has to bind emp id and name to rad combo box form client side.

도움이 되었습니까?

해결책

Get your values using ajax method (you can use ajax method of jquery).

function BindListToCombo(cbo, list) {
   $find(cbo).clearItems();
   $.each(list, function (a, item) {
      var comboItem = new Telerik.Web.UI.RadComboBoxItem();
      comboItem.set_text(item.Name);
      comboItem.set_value(item.Id);
      $find(cbo).get_items().add(comboItem);
});
var comboItem = $find(cbo).findItemByValue(0);
comboItem.select();} 

Use this function to bind the list to combo.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top