Hi, I am creating a wizard for which I made a wizard class, in which I am inserting the data in next() method by calling a method of my Interface. My Wizard form is implementing that interface. Now I have a grid control on this wizard, how will I insert the grid lines to my required table.
interface XYZ_IWizard
{
public void insertDetails()
{
}
public void insertGridLines()
{
}
}
class XYZ_DemoWizard extends SysWizard
{
XYZ_IWizard wizardInterface;
.....................................
public void next()
{
wizardInterface = this.formRun() as wizardInterface;
wizardInterface.insertDetails();
wizardInterface.insertGridLines();
}
.....................................
}
[Form]
public class XYZ_DemoWizard extends FormRun implements XYZ_IWizard
{
........................................................
public void insertDetails()
{
.....................................
}
public void insertGridLines()
{
}
......................................................
}