|
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.
|
|
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.
|
|
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.
|
Ask your Facebook Friends
|
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.
|
|
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.
|
|
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.
|
|
Or does it depend on the way in which it is written?
My question is related to page rendering time. Can we determine which will give better performance?
Should we always choose a smaller sized plugin?
Started by jitendra on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I can write a simplest plugin which can halt your page rendering, or downloads too many ....
Assuming you mean that the one plugin file has been minified, I would say in the majority of cases it with tool like yslow or google page speed
e.g.
|
|
I have a list of reviews, and when you add a review it posts to a PHP page and then loads a Smarty template into the beginning of the review list to show the review you just posted.
That works fine. However, I use a rounded corners plugin and timeago ...
Started by iddqd on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Install, reload the page, and look at the errors.
Firefox and the Firebug plugin are your friends.
|
|
Hi all,
I divided my problem into a short and a long version for the people with little time at hand.
Short version:
I need some architecture for a system with provider and consumer plugins. Providers should implement intereface IProvider and consumers...
Started by Erik Beijer on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Is 'you cannot' A solution is to include the interface in all assemblies, perhaps in a dll that the plugin there is the plugin project with these classes:
public interface ITest : IProvider { } public class and the plugin projects....
|