Kbase P96285: First character of Browse cell is hidden when contents are selected
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  20/10/2004 |
|
Status: Unverified
FACT(s) (Environment):
Progress 9.1C
Progress 9.1D
OpenEdge 10.0x
SYMPTOM(s):
Tabbing into last cell causes the first character to become hidden i.e. 31/01/2004 becomes 1/01/2004
Character is hidden despite cell having sufficient space to display all data
Using static Browse widget
Column is placed at the end (right-hand side) of the Browse
Column has exactly enough space to display contents when initially displayed
Adjacent column is made smaller to provide additional space
Only occurs with the first row
CAUSE:
This is a known issue being investigated by Development
FIX:
Options to workaround the problem include:
1) Reduce the size of the adjacent column
2) Re-order the columns; ensure that the problematic column is not the last in the Browse
3) Size the problem column in the design phase to ensure that it is of sufficient size to show the contents of the cell normally and when selected
4) Create an Entry trigger on the column similar to the following:
ON "ENTRY" OF <field> IN BROWSE {&BROWSE-NAME} DO:
DISPLAY <field> @ <field> WITH BROWSE {&BROWSE-NAME}.
END.