Add new field in child table by Display Depends On Parent table

@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 This is how bad I am :smiling_face_with_tear: :joy:

@Hardik_Gadesha
please check your email

@Hardik_Gadesha
Helloo again,
do you know why this condition not working.
What I want is not equal !=

@Nada-86 eval:in_list(doc.games != 'Wind')

Invalid “depends_on” expression

@Nada-86

eval:doc.games != 'Wind';

1 Like

@Hardik_Gadesha
You Are My Herooo
You Are The Beessttt

1 Like

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?

@Omar_Mohammed

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)

@Hardik_Gadesha

I need help in something like that pleeaaassseeee

try this it worked for me

eval:cur_frm.doc.parent_field_name == “your_value”