- Code: Select all Expand view RUN
- REDEFINE COLUMN XBROWSE oList OF oDlg ID 102 MESSAGE "Auswahlliste" ;
ON CHANGE msginfo("Change")
oList:Setarray(aArray)
In 13.3 only this code is correct (with clausula ARRAY). If i use the above code, the ON CHANGE are NOT transformed in bChange and not executed!? If i use obrw:bChange := {||....} it is ok.
- Code: Select all Expand view RUN
- REDEFINE COLUMN XBROWSE oList OF oDlg ID 102 MESSAGE "Auswahlliste" ARRAY aArray;
ON CHANGE msginfo("Change")