[Progress Communities] [Progress OpenEdge ABL] Forum Post: Dynamic Browse - Triggers Section

Status
Not open for further replies.
O

OctavioOlguin

Guest
Few days ago, I copy/pasted som code from a KB on dynic browse, but for some reason I can't find, my triggers won't fire. This is the code CREATE BROWSE hBrowse ASSIGN X = 25 Y = 100 WIDTH = 150 DOWN = 18 FRAME = FRAME {&frame-name}:handle READ-ONLY = YES SENSITIVE = TRUE ROW-MARKERS = TRUE SEPARATORS = TRUE FIT-LAST-COLUMN = TRUE FONT = 1 TRIGGERS: ON DEFAULT-ACTION DO: hBrowse:SELECT-FOCUSED-ROW (). RUN func\Detener.w(ttFiles.resultado, 2). END. ON MOUSE-SELECT-UP DO: hBrowse:SELECT-FOCUSED-ROW (). RUN func\Detener.w(ttFiles.resultado, 2). END. ON VALUE-CHANGED DO: ASSIGN fEdit = ttFiles.resultado. DISPLAY fEdit WITH FRAME {&FRAME-NAME}. END. ON ROW-ENTRY DO: ASSIGN fEdit = ttFiles.resultado. DISPLAY fEdit WITH FRAME {&FRAME-NAME}. END. END TRIGGERS. CREATE QUERY hQuery. hQuery:SET-BUFFERS(BUFFER ttFiles:handle). Any insight will be very appreciated

Continue reading...
 
Status
Not open for further replies.
Top