sky_proj
Newbie

Posts: 24
|
 |
« on: June 18, 2015, 07:45:41 AM » |
|
I have problem, this code doesn't work on easyui 1.4.2, but work on 1.3.2, whats wrong with my code..? $(function(){ var tb = $('#addfaktur1_bukti').combobox('textbox'); tb.bind('blur',function(e){ var deptpjx =$('#addfaktur1_dept').combobox('getText'); var gdgpjx =$("#addfaktur1_kdgd").combobox("getText"); $('#addfaktur1_kodeitem').combobox({ onBeforeLoad: function(param){ param.isi = 'kodeitem'; param.gdgpj = gdgpjx; param.deptpj = deptpjx; }, onSelect: function(rec){ }, delay:500, mode:'remote', url:'tranFunc.php', valueField:'text',//id aslinya textField:'text', panelWidth: 350, panelHeight: '200', //bisa 'auto' formatter: FormatKdsup }); }); });
|