I have child table Doctype-name “Input Table”. I have used this child table twice in the parent doctype name “Three PL”.
The child tables’ fieldnames are as input_1 and input_2. But When I apply filters differently to both child tables field “key”. Filter are not different but are same of last child table has used. Key field is of select datatype
You can use frm.set_query
.
But I am applying select datatype not link datatype.
If you want to set options in a select element, you can use this.
frm.fields_dict.input_1.grid.update_docfield_property("field_name","options",["Option 1", "Option 2", "Option 3"]);
frm.fields_dict.input_2.grid.update_docfield_property("field_name","options",["Option 4", "Option 4", "Option 6"]);
frm.fields_dict['create_order_input'].grid.update_docfield_property('key', 'options', frm.vendor_order_fields);
I am using this .
Is it working?
nope not working
Have you tried the solution I shared with you? It’s working for me.
still nope as both child table are of same doctype.
Here, input_1
is the field name which is in the parent DocType. Have you replaced it with your parent DocType’s field name?
yep i replaced it