How to apply the field value filter when the value is updated using bulk edit.
frappe.ui.form.on("Delivery Note", {
setup: function(frm) {
frm.set_query("driver", function() {
return {
filters: {
status: "Active",
},
};
});
}
});
this code work on form view, but what about the same filter when value is updated using bulk edit (from List view)