Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. Create splitter on Forms in AX 2012
  2. ===================
  3.  
  4. 1. Create a group inside the main group. The name of this group for example **VSplitter**.
  5. `Note: between the two groups`.
  6.  
  7. 2. In property window of that group
  8. <kbd>AutoDeclaration: Yes</kbd> <kbd>Style: SplitterVerticalContainer</kbd> (or <kbd>SplitterHorizontalContainer</kbd>).
  9.  
  10. 4. In the class declaration of that form use below code:
  11. ```
  12. public class FormRun extends ObjectRun
  13. {
  14. SysFormSplitter_X vertSplitter;
  15. //SysFormSplitter_Y horizSplitter;
  16.  
  17. //Initialize the class.
  18. public void init()
  19. {
  20. super();
  21.  
  22. vertSplitter = new SysFormSplitter_X(VSplitter, gridGroup, element);
  23. }
  24. }
  25. ```
  26. done!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement