Thursday, 14 August 2014

form splitter

go to formName > method > class declaration

write this on class declaration:

public class FormRun extends ObjectRun
{
    SysFormSplitter_X m_vSplitter;

}

go to formName > method > init

and write this on init class:

public void init()
{
    super();
    m_vSplitter = new SysFormSplitter_X(vSplitter, gridContainer, element);
}

this is how the splitter will look like. u can move the table freely, the way u want it to be.
p/s: make sure to put it in the form.

No comments:

Post a Comment