Idea Summary
Many modern web applications built with technologies such as PHP and React js allow users to enter dates as continuous digits without typing separators. For example, users can type 190526, and the application automatically formats it as 19/05/26 or 19-MAY-26.
Oracle APEX currently requires users to enter date separators manually, which slows down data entry in high-volume business applications.
I suggest adding a built-in option for Date Picker items to automatically format numeric date input based on the item's format mask.
Examples:
190526 → 19/05/26 (DD/MM/RR)
190526 → 19-MAY-26 (DD-MON-RR)
19052026 → 19/05/2026 (DD/MM/YYYY)
This feature is already common in many PHP, React JS, and other modern applications, and would significantly improve usability and productivity in Oracle APEX, especially for ERP and data-entry systems.
Use Case
- Faster keyboard-based date entry
- ERP, accounting, and logistics applications
- Users migrating from legacy systems
- Reduced typing effort and fewer input errors
Preferred Solution (Optional)
Add a new Date Item property:
- Auto Format Numeric Input = Yes/No
When enabled, Oracle APEX would automatically insert separators and format the entered digits according to the item's defined date format mask when the field loses focus or as the user types.