[Progress Communities] [Progress OpenEdge ABL] Forum Post: Updateable browser enabling only the first column

Status
Not open for further replies.
P

papalee_abb

Guest
11.7.2 ChUI, Windsow 10 Deploying to 10.2b AIX ChUI The following code results in only tt.f1 being enabled in the browser. What am I doing wrong? define temp-table tt no-undo field f1 as character field f2 as character. define query q1 for tt. define browse b1 query q1 display tt enable all with 5 down no-row-markers. define frame f1 b1. if not temp-table tt:has-records then do: create tt. assign tt.f1 = "Value 1" tt.f2 = "Value 2". end. open query q1 for each tt. enable all with frame f1. wait-for end-error of frame f1.

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