Pergunta

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.

Foi útil?

Solução

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top