Hi,
I'm using Schedule component with CRUD implementation.
When I add the search textbox on the schedule header and type a character that is present in the subject of the appointment, the highlighted line of code returns always an empty array.
Can you help me?
function searchKeyUp(args) {
var searchString = $("#txtSearch").val();
var sobj = $("#WorkActivitySchedule").data("ejSchedule");
var result = sobj.searchAppointments(searchString); //result is always EMPTY
showResult(result, searchString);
}
Thanks in advance.
Claudio