1

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.

pyrocumulus
  • 9,072
  • 2
  • 43
  • 53
Sreedhar goud
  • 81
  • 2
  • 5
  • 15

1 Answers1

3

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.

Jagz W
  • 855
  • 3
  • 12
  • 28