Ok, meanwhile I solved the problem myself. This is what is did:
CSVWizardDialog wdialog = new CSVWizardDialog();
wdialog.getDialog.setVisible(true);
That way, the method showPage of...
Type: Posts; User: grimfromghent; Keyword(s):
Ok, meanwhile I solved the problem myself. This is what is did:
CSVWizardDialog wdialog = new CSVWizardDialog();
wdialog.getDialog.setVisible(true);
That way, the method showPage of...
Something like this?
mainView.setMarketDataStore(new MarketDataStore());
And to access the data store:
mainView.getMarketDataStore();
Hi there,
I'm trying to create a wizard consisting of multiple pages.
Here is part of the code (rest is not important):
public class CSVWizard extends AbstractWizard{
public...