Consultor Eletrônico



Kbase P21736: ADM1: How to fire a trigger when a browse column is moved on
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   21/08/2003
Status: Unverified

GOAL:

ADM1: How to fire a trigger when a browse column is moved on a freeform query browse

FACT(s) (Environment):

Windows

FACT(s) (Environment):

Progress 9.1D

FIX:

When using a freeform query on a browse you need to code such requirements into the browse manually.

To get such behaviour you need to add the following to the Main block of the browse, changing the object names to reference the objects in your application (browse name / frame name / column name etc):


ASSIGN br_table:COLUMN-MOVABLE IN FRAME F-Main   = TRUE.

ON END-MOVE OF Customer.Name IN BROWSE br_table /* Name */
DO:
 MESSAGE "End Move - Customer Name".
END.