Custom lookup for Dialog fields in Axapta Overriding the event methods (e.g. custom lookup, modify, validate, selectionChange) on dialog controls is not as straight forward as it is on form controls, but the good news is that it is possible! In order to override the event methods on dialog controls, the following needs to be done. class TestDialogFields { Dialog dialog; DialogField newProdIdField; } public static void main(Args args) { TestDialogFieldstestDialogFields = new TestDialogFields(); DialogRunbase...(read more)
↧