jQWidgets
jQWidgets copied to clipboard
jqxScheduler searchAppointments
A client has suggested that searchAppointments could be added. He has provided a code example of the function:
searchAppointments: function (f) {
var e = this;
for (var d = 0; d < e.uiappointments.length; d++) {
var g = e.uiappointments[d];
if ((g.subject).includes(f)) {
g.hidden = false;
} else {
g.hidden = true;
}
}
e._renderrows()
}