[ 
https://issues.apache.org/jira/browse/OFBIZ-13221?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17945238#comment-17945238
 ] 

Deepak Dixit edited comment on OFBIZ-13221 at 4/17/25 6:06 AM:
---------------------------------------------------------------

I can confirm that it's working as expected.

The issue seems to be specific to the Firefox browser — it behaves 
inconsistently, while all other browsers handle it correctly.
Firefox complains about the following line of code (sometimes it works, 
sometimes it doesn't):
{code:java}
var form = element.form();{code}

This is because form is a property of a DOM element, not a function, so it 
should be accessed without parentheses:
{code:java}
var form = element.form;{code}


was (Author: deepak.dixit):
I can confirm it's working as expected. Firefox browser behaving strange, for 
rest of the browser it's working fine. 

Firefox complaint about the following code as well

 
{code:java}
var form = element.form();

{code}

> Helveticus Theme: Messages not shown 
> -------------------------------------
>
>                 Key: OFBIZ-13221
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-13221
>             Project: OFBiz
>          Issue Type: Bug
>          Components: themes/helveticus
>            Reporter: Deepak Dixit
>            Priority: Major
>         Attachments: screenshot-1.png
>
>
> The new default Helveticus theme does not display system messages (e.g., 
> success, error).These content-messages are present in the DOM but are hidden 
> due to CSS rules in the theme’s stylesheet.
> {code:java}
> .content-messages p {
> display: none;
> }{code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to