select autocomplete onChange

select autocomplete onChange

pearly_030pearly_030 Posts: 42Questions: 0Answers: 0
edited August 2011 in General
Event onChange works with a simple select.
I found plug-in to add autocomplete with select but the event onChange doesn't work with it.

My code
[code]

.....

@import "./jquery1814_ExciteBike_Macif/css/custom-theme/jquery-ui-1.8.14.custom.css";
@import "./DataTables-1.8.1/media/css/demo_page.css";
@import "./DataTables-1.8.1/media/css/demo_table.css";
@import "./DateTimePicker/jquery-ui-timepicker-addon.css";
@import "./jquery_ui_selectmenu/ui.selectmenu.css";
@import "./jquery_autocomplete_select/autocomplete.css";














........


$(document).ready(function() {
$('select.autocomplete').select_autocomplete();
$('select.autocomplete').show();
......
var oTable2 = $("#ireservees").dataTable({
......
});
.....

$("#destination").change( function() { oTable2.fnDraw(); } );
.....
});

Replies

  • fbasfbas Posts: 1,094Questions: 4Answers: 0
    Sorry that I can't provide more help, but this is a question for the authors of the autocomplete package. Find out which events are triggered by their package.
This discussion has been closed.