|
I'm having Plugin A which extends the 'Export Wizard' via the org.eclipse.ui.exportWizard ExtensionPoint. Plugin B depends on Plugin A, is it possible to add WizardPages defined in Plugin B to Plugin A? I know adding Pages dynamicly is possible withhin...
Started by Martin Dürrmeier on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The plugin editor access in your....
Yes, as long as Plugin B is in the required plugins list for Plugin A (in Plugin A's manifest) then you can access classes from it in any extension point you define in Plugin A.
|
|
Hi, Can I add a reference from an eclipse plugin project to a non plugin jar? This is a jar that I can not change, so i have to use it as is.
Thank you Ido
Started by Ido on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Lib), then modify the plugin's classpath (in the manifest editor) to include the plugin....
Copy the jar into a sub-directory of the plugin (e.g.
The simplest way to do this is to add the jar to your plugin and modify the classpath.
|
|
I'm creating a jQuery plugin for one of my projects and I was wondering what's the best way to go about this. I need to be able to call a function on the plugin from outside the plugin, at any time. For example, an event outside the plugin happens, and...
Started by Ryan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
() { this.each(function() { updateTable(this); } };
Also, you should apply your plugin to the jQuery.
|
Ask your Facebook Friends
|
Hello,
I am using jquery datagrid plugin to display my results in table. I have also used a jquery inlineEdit plugin. Both work finely. Until after pagination(say page 2) the inline plugin doesn't work. what would be the problem?
thanks v.srinath
Started by V.Srinath on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To fix this you may have to have a onPagination callback .
That are needed for the inline edit plugin.
|
|
Hi,
I'm trying to use the maven assembly plugin for the first time. Essentially, I want to combine the output of the maven assembly plugin with that of the maven jar plugin into the target/classes directory so I can still run the app within Eclipse.
I...
Started by Klaus on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You could use the maven-antrun-plugin.
Want to include them as Config.xml depending on the profile .
|
|
I'm trying to use the Fancy Zomm jQuery plugin to show multiple images in the same lightbox by using the scrollTo plugin to switch to the next of previous image which are all in different divs.
The problem is that it seams that I can't use jQuery inside...
Started by Philippe Mongeau on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
On the other hand depending on which lightbox plugin are you using.
Is probably out of the question.
|
|
In order to clean up my code i want to use sub-plugins within my actual jQuery plugin, but actually there is nothing happening. thx in advance
As an easy example, please take a look at the following code:
(function($){ $.fn.funct = function() { // so ...
Started by Julian Weimer on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I would prefer to fire a custom event in one plugin and let the other plugin subscribe.
|
|
I downloaded tortoise plugin samples, but I don't know how to implement it on Delphi.
I have successfully compile C# sample, and use it on a repository, but my knowledge in C# for general development is poor. In other hande, I don't know how to start ...
Started by WilliamK on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I'd start by learning how to implement a COM object in Delphi .
The TSVN plugin API is COM-based.
|
|
I'm attempting to start a fresh project that hopes to use GWT 1.7.1, the Google Plugin for Eclipse, and Maven 2. I inferred that the best way to do this would be to setup the project using the Mojo gwt-maven-plugin 's archetype from this question .
All...
Started by Justin Searls on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try version 1.1 of the gwt-maven-plugin instead of 1.1-SNAPSHOT..
Com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel.
|
|
I would like to have the maven eclipse plugin regenerate my .classpath whenever a build is run, and I did so by using the following configuration:
<!-- Generate a new .classpath each time the build is run, but don't try to download sources or javadocs...
Started by LES2 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Why do you want to keep re-running it?
I suspect the Maven Eclipse Plugin to mess do some classpath woodo that affects the jetty plugin....
You really don't want to run the maven-eclipse-plugin on every build when there's a .classpath).
|