Question How to improve the readability of disabled editir widget

Hi,

We replaced a fill-in with an editor widget. When this editor is disabled state (some scenario sensitive become false ) customers reporting an issue with the clarity of fonts in the editor. How can we solve this issue.

Instead of disabling I can make read-only false however cursor will enter into the editor while tabing. Anyways to overcome this ?

TIA
-Philip-
 

Attachments

  • Editor.png
    Editor.png
    30.6 KB · Views: 8

Cringer

ProgressTalk.com Moderator
Staff member
If you set the TAB-STOP property to false then it won't get tabbed into.
 
Thanks much for your reply.
Please see this attached snippet of code where I am setting the tab-stop = true in one radio button and make it false in the other. First time it works fine as expected however in the time (once the tab stop become false) it never become true even I assign the value true one the value change. Any clues please help.
-Philip-
 

Attachments

  • TAB.W
    9.3 KB · Views: 4

Osborne

Active Member
I don't know if this is of any help, but one trick I once used for an editor widget when disabled is set the background color to white and set a different font which made it more readable. Something like this:
Code:
IF EDITOR-1:SENSITIVE THEN
    ASSIGN EDITOR-1:BGCOLOR = ?
           EDITOR-1:FONT = ?.
ELSE
    ASSIGN EDITOR-1:BGCOLOR = 15
           EDITOR-1:FONT = 6.
 
Top