Hi Peter,
I bet the approach is valid and should work fine. Anyhow, it does not work in my case. Because I am new to this framework I start from a running demo, adopting the code piece by piece to my needs and check my mistakes anytime it doesnt work anymore. En passant I realize the code.
This part seems to be crucial:
ordersSource.data
how does this work ?
$(“#customers”).bind(‘select’, function(event)
{
if (event.args)
{
$(“#orders”).jqxComboBox({ disabled: false, selectedIndex: -1});
var value = event.args.item.value;
ordersSource.data = {CustomerID: value};
ordersAdapter = new $.jqx.dataAdapter(ordersSource);
$(“#orders”).jqxComboBox({source: ordersAdapter});
}
});
Thankyou for explaining