i am trying to check if an id exists in a combo i am using this code but it is not working .
var file = 200
var list = $$('Combo1').getPopup().getList();
if (list.exists(file)) {
}else{
webix.alert({
title: "User Does Not Exist",
ok: "OK",
type: "alert-error",
text: "User Does Not Exist "
});
}