Hello,
I have a wizard that I add my WizardPages to in the plugin I'm developing.
private WizardNewFileCreationPage iPageOne;
private WizardPage iPageTwo;
private WizardPage iPageThree;
private WizardPage iPageFour;
@Override
public void addPages()
{
super.addPages();
iPageOne = new <MyWizardPageImplementation1>;
iPageTwo = new <MyWizardPageImplementation2>;
iPageThree = new <MyWizardPageImplementation3>;
iPageFour = new <MyWizardPageImplementation4>;
addPage(iPageOne);
addPage(iPageTwo);
addPage(iPageThree);
addPage(iPageFour);
}
Strangely for me, the last wizard page(the one corresponding to iPageFour always renders empty). There's just nothing wrong my <MyWizardPageImplementation4>. I've even tried replacing with other wizard pages, like:
iPageFour = new <MyWizardPageImplementation3>;
No matter what, it always renders empty and I only see the correct title and description in this wizard page. I never faced such issues when I was developing the previous wizard pages! Can anyone out there help me understand this behaviour? Thanks in advance.
[Updated on: Fri, 20 July 2012 14:30] by Moderator