JmgPayStatAdjustBalance.getFromDialog Method [AX 2012]

Validates the values that are entered by the user.

public boolean getFromDialog()

Run On

Called

Return Value

Type: boolean
true if validation is successful; otherwise, false.

This method is called after the dialog is closed. When you inherit from this method, always remember to call the super method.

public boolean getFromDialog() 
{ 
 
    transDate = dlgTransDate.value(); 
    custAccount = dlgCustAccount.value(); 
    return super(); 
}

Community Additions

ADD
Show: