Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [dtp-dev] Context help for Connection Details page


I have never seen contextual help added to the Wizard class, so I don't know if it is even possible.  Usually, it is added to each wizard page in the CreateControl() method.  You can look at the NewConnectionProfileWizardPage class in the org.eclipse.datatools.connectivity.ui plug-in for an example.

Larry Dunnell
RAD Data Tools, DB2 Tooling,  Eclipse WTP Project and Eclipse DTP Project
IBM DB2 Information Management Software




Anil T Samuel <anil.samuel@xxxxxxxxxx>
Sent by: dtp-dev-bounces@xxxxxxxxxxx

02/25/2007 09:51 PM

Please respond to
DTP development mailing list <dtp-dev@xxxxxxxxxxx>

To
DTP development mailing list <dtp-dev@xxxxxxxxxxx>
cc
Subject
[dtp-dev] Context help for Connection Details page





Hi

I am looking for ways to add contextual help to Connection Details  
page of New Connection Wizard.
When I try the following in the wizard class, this.getContainer() is  
returning null; is it a bug ?

public void addCustomPages() {
                                 super.addCustomPages();
                                 this.mPropPage
                                                                   .setDriverCategory
("oracle.dbtools.dtp.connectivity.db.driverCategory");
                                 Control c = (Control) this.getContainer();
                                 PlatformUI.getWorkbench( ).getHelpSystem( ).setHelp(c, "oracle-dtp-
core-help-createConnection");
                }

any other of way to get the context help ?

Anthos
_______________________________________________
dtp-dev mailing list
dtp-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/dtp-dev


Back to the top