Показать сообщение отдельно
Старый 15.10.2011, 18:11   #1  
Blog bot is offline
Blog bot
Участник
 
25,459 / 846 (79) +++++++
Регистрация: 28.10.2006
equalized: Dynamics Ax RunBase overriding dialog with a Form
Источник: http://blog.equalized.be/2011/10/dyn...g-with-a-form/
==============

Hi,

Some time ago I’ve found out that you can implement a form into a RunBase dialog, this has the advantage that you can easily use a grid control, etc… or use modified field methods without using controlMethodOverload() method. You can do this by overriding the dialog method and adding the following code.

DialogRunbase dialogRunbase = Dialog::newFormnameRunbase(formstr(BLOGRunBaseDialogExample), this);;return super(dialogRunbase);

You can still add fields the normal way by using the addFieldValue() method, these fields will appear next to the embedded form.

This form must have a Tab control and some hardcoded groups, also on the design the property FrameType must be set to None. The groups I’ve created are DialogStartGrp and RightButtonGrp, these are used for positioning fields and query values from code. More groups may be necessary when extending from RunBaseBatch, RunBaseReport, …  The tab control is used for adding a batch tab when extending from RunBaseBatch.



In the dialogPostRun() method you can get the formRun of the dialog and make calls to the form, for example setting query ranges.

public void dialogPostRun(DialogRunbase dialog){ Object formRun; ; if(FormHasMethod(dialog.formRun(),"setQueryRanges")) { formRun = dialog.formRun(); formRun.setQueryRanges(); } super(dialog);}



Источник: http://blog.equalized.be/2011/10/dyn...g-with-a-form/
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору.