My search function using jquery does not take property in function:
$.each(items, function (index) {
var properyToMatch = 'value';
////console.log("items is setJqxComboboxSelectedItem global fun... "+this.properyToMatch+"and item to select :"+itemToSelect);
if (this.properyToMatch === itemToSelect) {
////console.log("items is setJqxComboboxSelectedItem global fun... "+this.properyToMatch+"and item to select :"+itemToSelect);
indexToSelect = index;
return false;
}
});
I shows this.properyToMatch as undefined.
Please help me.
Thanks in advance.
Regards,
Pushpendra