hi, strange situation.
I have two combobox, I want to make dependent the second:
comboxbox1:
<input class="easyui-combobox" name="one" id="one" data-options="
width:180,
valueField:'key',
textField:'name',
url:'source/getOne.php',
value:'YZ',
queryParams:{
key:'YZ'
},
onSelect: function(rec){
var url = 'source/getTwo.php?key='+rec.key;
$('#two').combobox('reload',url);
}">
comboxbox2:
<input class="easyui-combobox" name="two" id="two" data-options="
width:150,
valueField:'clv',
textField:'name',
url:'source/getTwo.php',
value:'0',
queryParams:{
key: $('#one').combobox('getValue')
}">
when I select the one, the two did not do anything.
followed the example of the documentation, I do not understand it does not work
help please!