Kbase P94225: GroupAssign link between 2 viewers in a container cause incorrect tab order
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  10/16/2008 |
|
Status: Unverified
FACT(s) (Environment):
OpenEdge 10.0B
Dynamics
SYMPTOM(s):
Using GroupAssign link between 2 viewers in a container, the tab order is not correct.
One SDV is on page 0 and another SDV is on page 1.
When pressing "Add" button in the Toolbar then the first field in the page 1 SDV get the focus instead of the first field in page 0 SDV.
CAUSE:
This is a known issue being investigated by Development.
FIX:
Apply the entry back to the page 0 SDV.
This can be done adding "AddRecord" internal procedure in page 0 SDV's custom super procedure: PROCEDURE AddRecord:
/*---------------------------------------------------------------------
Purpose:
Parameters:
Notes:
----------------------------------------------------------------------*/
RUN SUPER.
RUN ApplyEntry IN TARGET-PROCEDURE (?) .
END PROCEDURE.