So I have two MultiSelect fields in my custom doctype:
"field_order": [
...
"section_break_izin",
"inv_lst",
"column_break_jawm",
"quot_lst",
"section_break_uahh",
...
]
...
{
"fieldname": "inv_lst",
"fieldtype": "Table MultiSelect",
"label": "List of Invoices",
"options": "List of Invoices"
},
{
"fieldname": "quot_lst",
"fieldtype": "Table MultiSelect",
"label": "List of Quotations",
"options": "List of Quotations"
},
Now, when I populated inv_lst
all is well.
However, after adding objects to qout_lst
and clicking save
, the objects disappear from quot_lst
.
The only thing happening before save is a validation script to test if a boolean
is true
.
very strange…