Hi,
Most of the event bindings return an Event object, but I couldn’t find any description of the attributes of the Event.
The only thing we know is that we can access the item with event.args.item.
But the item that I get doesn’t contain my original object.
The declaration
$("#movie_search").jqxInput({ placeHolder: "Enter a movie title", displayMember: "title"});
Setting the source
var movie_list = new Array();
var movie = {"id_movie": 5, "title": 'Tron'};
movie_list.push(movie);
$("#movie_search").jqxInput({source: movie_list});
select event (where I cannot get my item)
$('#movie_search').on('select', function (event) {
var item = event.args.item;
alert("Title = " + item.title); // this gives me "Title = undefined"
}