-
15. Re: Ready Only Item is preventing page refresh
Srini-S Oct 31, 2018 2:30 PM (in response to fac586)Thanks again to both of you.
But between the two options that you both gave, which one is better and why? What are the considerations , pros and cons between these two approaches?
-
16. Re: Ready Only Item is preventing page refresh
Franck N Oct 31, 2018 3:06 PM (in response to Srini-S)The Choice is up to you.
but let me give you an hint.
one solution required another item plus dynamic action to help taking care of other issues that might arise.
the other one is a one way trough and stop the issue before it even arises, less costly in term of operation.
Our concern is only that your issue is resolved. Whichever solution you apply in your case accord to your preferences is up to you.
-
17. Re: Ready Only Item is preventing page refresh
fac586 Oct 31, 2018 4:06 PM (in response to Srini-S)Srini-S wrote:
But between the two options that you both gave, which one is better and why? What are the considerations , pros and cons between these two approaches?
The text item with
readonly
attribute is non-standard (hence the custom CSS to make it look like a display-only item):- It's appearance doesn't match that of other display-/read-only controls in the application.
- A future APEX or Universal Theme upgrade may change the styling of page items so the custom override no longer works.
- It's non-editable but the control still accepts input focus. This will slow down and potentially confuse users navigating through the form.
The display-only + hidden item combination does require an additional item, but uses only using standard APEX styling and processing, so it is future-proofed against later upgrades. This follows the preferred APEX "low code" approach: don't write code you don't have to.
-
18. Re: Ready Only Item is preventing page refresh
fac586 Oct 31, 2018 4:26 PM (in response to Franck N)1 person found this helpfulFranck N wrote:
The Choice is up to you.
but let me give you an hint.
one solution required another item plus dynamic action to help taking care of other issues that might arise.
The dynamic action is already there. The displayed value shows the result of the calculation it performs. Adding another True action only involves a few clicks.
the other one is a one way trough and stop the issue before it even arises, less costly in term of operation.
Not when the additional effort required to make the read-only text item non-navigable is factored in.
Our concern is only that your issue is resolved. Whichever solution you apply in your case accord to your preferences is up to you.
Speak for yourself. My concern is to encourage the development of attractive, performant, secure, accessible and usable applications based on proper database design, sound UX and software engineering principles, elegant code, and best practice methodologies.
-
19. Re: Ready Only Item is preventing page refresh
Srini-S Oct 31, 2018 4:32 PM (in response to fac586)I totally agree. I am usually against customization unless must. This was one reason asking which way to go because ultimately the best in all aspects is what every one look for.
I am glad for asking and thanks again for a healthy discussion.
-
20. Re: Ready Only Item is preventing page refresh
Srini-S Oct 31, 2018 4:41 PM (in response to fac586)Another question not related to this subject:How do you 'reference' the post while replying? A part of original post can be seen in your replies.
-
21. Re: Ready Only Item is preventing page refresh
Franck N Oct 31, 2018 4:46 PM (in response to fac586)Hi,
look there is no reason to be peaky here.
I am here for knowledge not for pointless fights Or competition.
readonly is a css attribute not a part of apex component which will work independently of any apex version past present and future. No additional effort required here.
if you do not feel yourself included in the “we” feel free to ignore my posts.
respectfully,
franck
-
22. Re: Ready Only Item is preventing page refresh
Srini-S Nov 7, 2018 6:29 PM (in response to Srini-S)@face586
May I know the way to print the original post content partially while replying?
-
23. Re: Ready Only Item is preventing page refresh
fac586 Nov 7, 2018 7:55 PM (in response to Srini-S)Srini-S wrote:
@face586
May I know the way to print the original post content partially while replying?
Use the Quote button in the editor toolbar.
A complete guide to use of the Oracle Community site is available: Oracle Community Guide
Post questions relating to use of the site in the Community Feedback forum.
-
24. Re: Ready Only Item is preventing page refresh
Srini-S Nov 8, 2018 6:52 AM (in response to fac586)fac586 wrote:
Srini-S wrote:
@face586
May I know the way to print the original post content partially while replying?
Use the Quote button in the editor toolbar.
A complete guide to use of the Oracle Community site is available: Oracle Community Guide
Post questions relating to use of the site in the Community Feedback forum.
Great, thank you once again. I will follow these guidelines on posting questions going forward as well.