Hi,

I am trying to get this to work, but want to make sure I am doing this properly before opening a ticket.

In my app inspector, the following works.

ogrid = lianja.get("page1.section3").grid
ogrid.sort(5,1)
In my Section code I have the following


proc page1_section3_sort(nColumn,nDirection)
wait window "click test"
ogrid = lianja.get("page1.section3").grid
ogrid.sort(nColumn,nDirection)
endproc
When I click on the column header, I can see the arrow change direction, but I don't see the code in the proc fired off.
Am I doing this correctly?

Thanks.

Herb