Kbase P26154: Browse accepts values differently between after migrating to
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  6/2/2003 |
|
Status: Unverified
SYMPTOM(s):
Browse accepts values differently
Browse Version 9 resets the value entered in the browse when pressing the left and right arrows
Browse Version 8 accepts the new value.
The value is entered by firing a trigger ON ANY-KEY OF browse column that apply a key event (cursor-down, cursor-up) on the BROWSE:
ON "cursor-right" OF customer.NAME IN BROWSE browse-1 do:
APPLY "cursor-down" to BROWSE browse-1 .
END.
CHANGE:
Upgraded from v8 to v9.
CAUSE:
In version 8 this event applied to the browse causes the value to be accepted, in version 9 the value is reset.
FIX:
Apply the key event on the BROWSE column not on the BROWSE itself.
ON "cursor-right" OF customer.NAME in browse browse-1 do:
APPLY "cursor-down" to SELF.
END.