Discussions
Categories
- 385.5K All Categories
- 5.1K Data
- 2.5K Big Data Appliance
- 2.5K Data Science
- 453.4K Databases
- 223.2K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 47 Multilingual Engine
- 606 MySQL Community Space
- 486 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.2K ORDS, SODA & JSON in the Database
- 585 SQLcl
- 4K SQL Developer Data Modeler
- 188K SQL & PL/SQL
- 21.5K SQL Developer
- 46 Data Integration
- 46 GoldenGate
- 298.4K Development
- 4 Application Development
- 20 Developer Projects
- 166 Programming Languages
- 295K Development Tools
- 150 DevOps
- 3.1K QA/Testing
- 646.7K Java
- 37 Java Learning Subscription
- 37.1K Database Connectivity
- 201 Java Community Process
- 108 Java 25
- 22.2K Java APIs
- 138.3K Java Development Tools
- 165.4K Java EE (Java Enterprise Edition)
- 22 Java Essentials
- 176 Java 8 Questions
- 86K Java Programming
- 82 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 208 Java User Groups
- 25 JavaScript - Nashorn
- Programs
- 667 LiveLabs
- 41 Workshops
- 10.3K Software
- 6.7K Berkeley DB Family
- 3.6K JHeadstart
- 6K Other Languages
- 2.3K Chinese
- 207 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 474 Portuguese
InputText - Clear text Button not display in Edge but displayed in IE 10

ADF 12.2.1.3
Hello
We have just noticed that a simple af:InputText displayed in IE 10 has a "clear text" button the 'x' which when clicked empties the field.
With the latest version of Edge this "clear text" button is not displayed.
Is this normal or is there a property or other that can be used to display the clear text button in Edge?
Thks
Paul
Answers
-
Paul, can you share an image (or images) of this and the page code (at least of the inputText)?
Timo
-
Hi Timo
Here you go, its the most basic page ever :-)
For Edge :
Page code
For IE
Page Code
ADF Page source
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
<jsp:directive.page contentType="text/html;charset=UTF-8"/>
<f:view>
<af:document title="view1.jspx" id="d1">
<af:form id="f1">
<af:inputText label="Label 1" id="it1"/>
</af:form>
</af:document>
</f:view>
</jsp:root>
-
Run the app with content compression turned off so that you see the real style class names. I bet that the 'x' button in the inputtext is something browser dependant. I don't see it on any other Chromium-based browser.
When you then inspect the page you should be able see the class creating the 'x'.
Timo
-
Couldn't find the class creating the X so I created a simple HTML (below) page in notepad with an input text.
The reaction is the same in : In IE there is the 'X' to clear the field in Edge there is no 'X' so I conclude that the 'X' was a microsoft speciality in IE which no longer exists since they are now chromium based.
Thanks for your help Timo much appricated.
<!DOCTYPE html>
<html>
<body>
<form >
<label>Label:</label>
<input type="text"</input>
</form>
</body>
</html>
-
Hi Paul:
Is this problem solved?
I got same problem on my project。
-
Its browser dependant, on Edge and Chrome there is no X to clear the text, haven't tried any other browsers.