Hi Darren,
You can bind to the ‘select’ event of the ComboBox and make an ajax call passing the selected value.
Something like:
$('#jqxComboBox').bind('select', function (event) { var args = event.args; var data = "selecteditem=" + args.index; $.ajax({ dataType: 'json', url: 'data.php', data: data, success: function (data, status, xhr) { } });});
In the PHP code, you have to then check for “selectedItem”.
if (isset($_GET['selecteditem'])){ $selectedItem = $_GET['selecteditem'];}
Hope this helps.
Best Regards,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com