thkr_ituc

Results 13 comments of thkr_ituc

I switched back to a VM-Snapshot using frappe/erpnext v13.8.0. Effect also occurs with these versions, never noticed this... I could use frappe.throw() und frappe.show_alert() instead of msgprint(). But frappe.throw() would...

Workaround: call msgprint() from py-file instead of client script. Don't use this in your_doctype.js: ``` before_save(frm) { msgprint("before_save"); }, ``` Use this in your_doctype.py: ``` class YourDoctype(Document): def before_save(self): frappe.msgprint("before_save")...

Workaround: Don't check property "Mandatory" for affected fields, just enter a condition in "Mandatory depends on". The fields will only be marked as mandatory when the condition is met and...

Me too. "Sign in with your browser" doesn't work either.

Script reports are also affected.

I switched to V15 some weeks ago, behavior does not occur anymore.

I was confused at first to, because I misinterpreted the documentation. For a simple ShakeRotation around the Z axis that takes 1 second and rotates by max 45° use: `transform.DOShakeRotation(1,...

@cogk On Debian I use Firefox 115.9.1esr, on Windows Edge 124.0.2478.51. No accessibility features are emabled. I don't remember setting anything special, I assume my settings are the default setting...

I regret to inform you that the error still exists in V15, please reopen. I can't apply your solution proposal because this would change the settings globally. I need a...

Thank you, this is the explanation I needed.