Child table link field bug

Can someone know why is it that the user can’t click an option shown by the child table link fields? for it to be selected, the user needs to use the arrow keys and press Enter to choose the specific option. This occurs since v11 but I checked on beta.erpnext.com.au (also develop v12) and no issue.

This is already solved. Since we were using customized frappe DataTable, this problem occurs because we included it inside our hooks using app_include_js that resulted in overlapping with the default DataTable which is also being used for the default table field in frappe. so we solved it by removing it in the hooks and only include it inside the doctypes which this customized DataTable is being used, using frappe.require.

1 Like