$('#cc').combobox('setValue', newvalue); // set new value$('#cc').combobox('loadData', newdata); // set the whole data set
$('#dg').datagrid({ onEndEdit: function(index,row){ var editors = $(this).datagrid('getEditors',index); var value = $(editors[0].target).combobox('getValue'); // get the combobox value console.log(value) }})
var dg = ... // the datagrid objectvar index = ... // the index of the editing rowvar editors = dg.datagrid('getEditors', index); // get all editorsvar cb = $(edtiors[0].target); // the first editor is the comboboxcb.combobox('setValues',...); // call any methods on the combobox