@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)