Column-searching

Yohn

Member
Hy!
Anyone knows code or some steps of column-searching. What do I have to do, to have situation when I click on column that column sorts alphabetically.

Thanks!
 

sunilnair

Member
Hi Yohn,

On clicking the column-lable of a browser, the start-search event is triggered . So your code would something like the below

on 'start-search' of <columnname>
open query of browser by <fieldname>.
end.

Only an editable / updateable column of a browse can have the start search event.

I am assuming that you are working on one the GUI versions of Progress.

- Cheers
Sunil.
 
Top