On which way i can show a popup-menu with a column with :nEdittype := EDIT_BUTTON
On which way i can show a popup-menu with a column with :nEdittype := EDIT_BUTTON
oCol:bPopup should work. Is it not working or are you looking for something else?
Thanks,
i will show a popup-menu with click on the button of :nEdittype := EDIT_BUTTON
For this you can use oCol:bEditBlock.
When the button is clicked, this codeblock is evaluated with { |nrow,ncol,ocol,nkey| ...... }
You incorporate your popmenu display code inside this codeblock.
Another useful information for you
oBrw:aCellCoor() --> { nTop, nLeft, nBottom, nRight } of the current active cell.
This information can be used to align our dialogs, menus, etc.
Thanks, perfect information!