Hii guyss…
i need help with adding filters.
here i need to show only the universities from Germany or which country i choose above. how to do it??
Hii guyss…
i need help with adding filters.
frappe.ui.form.on("Application", {
setup: function(frm) {
frm.set_query("university", function(doc) {
return {
filters: {
country: doc.country
}
};
});
}
});