13 Nov 2013

Vertical splitters on Forms + AX 2012

Vertical splitter is the separator that is aligned vertically on the Ax Form and it separates two section on the Form. Use can also stretch or expand the section by dragging this splitter. You can find the snap shot below



What are steps to achieve this functionality?

1. Make a group sections as follows and make a separate group for vertical splitter as below .



2. Set the style property of the Group container to as follows. Make the AutoDeclaration to Yes also.



3. Go to the Form class declaration and declare the variable that will hold the object of vertical splitter

SysFormSplitter_X VerticalSplitter;

4. Go to the Form init method and initialize the object as below

VerticalSplitter = new SysFormSplitter_X(VSplitter, Container, element);

5. hopeeeeeeeee, you vertical splitter is ready

If you want example checkout  "MAINACCOUNT" Form.

I hope this will helpful somebody.....

No comments:

Create number sequence in D365 FO

Create the data type. Add code in the loadModule method of the appropriate NumberSeqModule subclass. Add a method to the module’s paramet...