Ok Command Button

LambaLamba Member Posts: 260
edited 2013-01-14 in NAV Three Tier
Hi,
There is a code on ok tab of a form, but couldn't find the Ok tab in Page.

Comments

  • deV.chdeV.ch Member Posts: 543
    On a page you don't have access to the system buttons like OK or Cancel.
    You need to rewrite your code to use the OnQueryClosePage method. There you can check which action was performed by:
    OnQueryClosePage(CloseAction : Action None) : Boolean
    IF CloseAction = Action::OK THEN
    
Sign In or Register to comment.