Hello I want to change multiselct dialog so how can i change dialogbox width without custom css? using frappe.ui.form.on(‘Packing list’, {
refresh: function (frm) {
frm.add_custom_button(__(‘Get Serial No.’), function () {
var d = new frappe.ui.form.MultiSelectDialog({
doctype: “Serial No”,
target: frm,
setters: {
status: “Active”,
},
add_filters_group: 1,
action(selections) {
// console.log(selections);
d.dialog.hide();
// Display a "Hello" message after hiding the dialog
frappe.msgprint("Hello");
},
});
d.show();
});
}