Discussions
Categories
- 196.7K All Categories
- 2.2K Data
- 234 Big Data Appliance
- 1.9K Data Science
- 449.7K Databases
- 221.5K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 549 MySQL Community Space
- 477 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3K ORDS, SODA & JSON in the Database
- 532 SQLcl
- 4K SQL Developer Data Modeler
- 186.8K SQL & PL/SQL
- 21.2K SQL Developer
- 295.3K Development
- 17 Developer Projects
- 138 Programming Languages
- 292K Development Tools
- 104 DevOps
- 3.1K QA/Testing
- 645.9K Java
- 27 Java Learning Subscription
- 37K Database Connectivity
- 153 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.1K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 17 Java Essentials
- 157 Java 8 Questions
- 85.9K Java Programming
- 79 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.2K Java SE
- 13.8K Java Security
- 203 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 387 LiveLabs
- 37 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.6K Other Languages
- 2.3K Chinese
- 170 Deutsche Oracle Community
- 1K Español
- 1.9K Japanese
- 230 Portuguese
Menu does not work in Chrome

Hi everyone
JDeveloper Version 12.2.1.0.0
I'm having a problem in ADF using the af:menuBar, af:menu and respective af:commandMenuItem in Chrome.
Problem:
Basically when I click on my menu button it does not open the options I have or in other words it does not display the menu options. This problem only happens in Chrome with the page scroll in the middle or below (if it's on top or not moved, it works). I tested in Firefox and IE and it works fine.
The menu is inside a table (a column) and I removed all the css applied and other style classes, but no effect. I really need help with this because I need the page to work in Firefox, IE and Chrome. But Chrome is really giving me a hard time to solve this (it works in firefix and IE ). Is this a ADF or Chrome or af:table bug? I have notice that this happens also to the sortable icons of the table, when I click in the up or down arrow icon (with the scroll page in the middle or below, this is very important because it only happens in this situation) it does not sort the column
My Code:
....
<af:panelGroupLayout id="pglListView" styleClass="AFStretchWidth" layout="vertical">
<af:table value="#{bindings.ServiceCategoryListVO.collectionModel}"
styleClass="AFStretchWidth DSPTableList" var="row"
emptyText="#{dspentitiesmanagementuiBundle.NO_DATA}" rowBandingInterval="0" id="t1"
columnStretching="column:c1" varStatus="vs">
<af:column sortProperty="#{bindings.ServiceCategoryListVO.hints.ServiceCategoryName.label}"
sortable="true" headerText="#{dspentitiesmanagementuiBundle.SERVICE_CATEGORY}" id="c1"
width="300px" styleClass="AFStretchWidth"
inlineStyle="#{row.DeletedBool ? 'background-color: #e9e7e5; color:#696969 !important;' : ''}">
.......
</af:column>
<af:column headerText="" styleClass="AFStretchWidth" id="c2" width="100px"
inlineStyle="#{row.DeletedBool ? 'background-color: #e9e7e5;' : ''}">
<af:panelGroupLayout id="pgl2" layout="horizontal" styleClass="AFStretchWidth">
<af:spacer width="5px" id="s5"/>
<af:menuBar id="mb1" styleClass="DSPMenuBar">
<af:menu id="m1" styleClass="DSPMenu">
<af:commandMenuItem text="Restore"
id="ppContextArchive"
actionListener="#{pageFlowScope.ServiceCategory.updateEntityState}"
styleClass="DSPMenuItem">
<f:attribute name="serviceCategoryId" value="#{row.ServiceCategoryId}"/>
<f:attribute name="serviceCategoryDeleted" value="#{row.DeletedBool}"/>
</af:commandMenuItem>
</af:menu>
</af:menuBar>
</af:panelGroupLayout>
</af:column>
</af:table>
</af:panelGroupLayout>
......
I appreciate any help or suggestions. Thank you all for your time.
Best Answer
-
Hello,
Similar issue with Chrome was reported for other components. See Note 2314113.1.
Try Patch 26834987 and retest.
Note: ensure to clear browser cache after patching and before testing again. Maybe using Incognito mode too.
Answers
-
Hi @Verdasca,
Well i had a lot of problems with chrome.
One specific problem was in login when using ADF security ... User had to sign in many times before he could sign in.
This magically didn't happen with FireFox ... So i stopped using chrome and notified the client to only use the app on firefox.
Sorry but this is the only solution i had ... and i hope that someone out there may tell us how to make ADF work with chrome.
Thank you
Gado
-
Hello,
Similar issue with Chrome was reported for other components. See Note 2314113.1.
Try Patch 26834987 and retest.
Note: ensure to clear browser cache after patching and before testing again. Maybe using Incognito mode too.
-
Hi William,
Installing the Patch worked perfectly. Thank you so much