@Hardik_Gadesha you mean this?
frappe.ui.form.on('Race Results', 'Individual Result Table', {
or
Item-Form
@Hardik_Gadesha you mean this?
frappe.ui.form.on('Race Results', 'Individual Result Table', {
or
Item-Form
@Nada-86 I would suggest to start learning from reviewing core frappe, erpnext code and this given link
@Hardik_Gadesha
Helloo again,
do you know why this condition not working.
What I want is not equal !=
Am tried to use the below condition but it’s not working.
eval: doc.payment_type != "Complete the Account" || doc.payment_type != "Technical Advance"
the condition is just working separated like the below
eval: doc.payment_type != "Complete the Account"
Can you help?
Try this once
eval: (doc.payment_type != "Complete the Account" || doc.payment_type != "Technical Advance")
or
eval: !inList(["Complete the Account", "Technical Advance"], doc.payment_type)
try this it worked for me
eval:cur_frm.doc.parent_field_name == “your_value”
Hey @Hardik_Gadesha Can you please help me in this i am doing the same thing but nothing is working my case.
I added a checkbox field in the parent doctype and i want to show the child table field column in the parent doc according to that checkbox field
Hello,
I’m trying the reverse way, wherein the display of the parent field should be dependent on one of the fields in the child table.
Can anyone help/guide me here?