plugins

Can you have a plugin architecture in ASP.NET?

Is it possible to load external "web-parts" in an ASP.NET website? I would like to make stand-alone dll's containing a User-Control or Page to include in a main site. Like a plug-in architecture for websites. The only examples I can seem to find bind the user control to the main project, you need to have a "hard" reference to the contro...

Rails plugin development documentation and resources

Are there any resources or documentation for developing Rails plugins? I'm using other plugins as examples, but it's hard to know if I'm doing something wrong, or if there's another way to do something. All I can find are old blog posts. I haven't found any documentation on how to develop plugins and what functionality/hooks are availabl...

jQuery - Call click

I have this jQuery which adds a click event to the selected object (from jQuery LightBox): $('#jquery-overlay,#jquery-lightbox').click(function() {_finish();}); How in code would I call the click event? ...

jQuery: plugin - get reference to passed object

hi all, i'm trying to create my first jQuery plugin. i got a prototype function called myListview and want to apply the plugin (named initLV) to it. the function: function myListview(div) { this.div = div; $(this).initLV(); // apply the plugin } as you can see, i'm passing the whole prototype object to the plugin. my questio...

How to setting jquery plugin once instance ?

Hi, I´m working in a jQuery pluging, and i have one error, i want modify the option of one instance of the plugin, but when i try it, i change the options for the all instances. Ok, my english is horrible, so is better than i put my code. Is a universal language ... (function($){ $.fn.interruptor = function(options){ // Variable inic...

How can I print to a label printer from a web page

Hi I have an e-commerce web application and I'd some how like to make that print to a label printer for the back end stuff I have two questions 1) I can't print from a normal webpage straight to the printer (A zedbra LP2844 i think) it just throws out junk 2) I want to be able to print labels to the label printer, but all other print...

FileMaker Plugin Package

Is anyone familiar with installing plugins in FileMaker? I created a package in PackageMaker using a new plugin. Everything seems to install correctly, I can see the new plugin in the extensions folder, but when I open FileMaker and look at the list of plugin it does not appear. Anyone know what I'm missing? I've been focusing on per...

Jquery drag and drop plugin between tables

I'm looking for a jquery plugin that makes it possible to drag and drop between two different tables. I have a table containing search results and I want to make it possible to drag each result to another table to be able to add them to that table. Anyone got an idea on how to do this? ...

Retrieving display value of lookup field in Dynamics CRM C# plugin

Hi, I am trying to retrieve the display value of a lookup field in a plugin for MS Dynamics CRM 4.0. The value of the attribute is a GUID which points to another entity (owner of salesorder in this case). "Normal" attributes I retrieve with a code like this: CrmDateTime serviceOrderDateDT = (CrmDateTime)entity["submitdate"]; ...

show/hide ajax? javascript toggle

Hi I'm looking for a wordpress plugin that hides to start with the when I click say an arrow image an ajax feature pops out with say a contact form inside and also another show hide feature at the bottom of the page to show and hide multiple divs. Is there a plugin that can do all this? My pages have to be editable for my client so i...

The bundle could not be resolved in RCP-RAP application

Hi, I have a RCP application which constitutes of a number of plugins. And now, I try to develop RAP application which uses my old plugins. My RAP has a dependency of one old plugin. I created my own target platform and I added RAP sdk and other many eclipse platform libraries. When I run my RAP application, I get this exception. Do yo...

Sharing a single cocoa framework copy across plugins

I have a set of plugins, a plugin framework for common code and a host app. These are each in separate Xcode projects (including separate projects for each plugin). In the end, I need to be able to click build and run on the host app project to build all the plugins, the framework and host app, package them up and launch the app. I kno...

Javascript image editor library

Hi all, My friend and I have plan to build a web shop. One of the shop's main feature is the ability for the customer to design their own stuff. My friend took polyvore website as an example. The above link point to an editor page. In polyvore, the customer can drag and drop items from right-hand side to a 'canvas' in the left-hand sid...

How to implement a callback method within DLL (Delphi / TJVPluginManager + TJvPlugin)

Hello, I'm building an application working with plugins. I'm using the excellent JVCL plugin framework. I first started to use package plugin. It worked like a charm but had a big drawback : the needs to give runtimes bpl (23Mo). So I switch to DLL plugin. I need to call a method (procedure having 3 parametes) from hostapplication but ...

Linking loadable plugins against symbols in the executable on Linux and Windows

It's very on the Mac to create a loadable plugin as a bundle and make it use symbols in the Host executable. How can this be done on Linux and Windows? I hear there's -rdynamic on Linux that may come in handy but I'm completely at a loss as far as Windows goes. The point is to move away from linking both the host and the plugin against...

JQuery - drop shadow plugin. Custom color

Hello, I'm using Jquery plugin DropShadow: web site And I want to set drop shadow color manually. Color is specified in the usual manner, with a color name or hex value. The color parameter does not apply with transparent images. From documentation, so, here is my code: { ... color: "black", swap: false } I...

What's the easiest way to pass image data from the client side to a mozilla plugin

I have a Zebra label printer on an XP box which I want to drive with JS in a FireFox browser. Currently I have a plugin based on the npscriptable geko sdk sample. I pass strings in using JS string property sets, and the plugin renders the strings: <form> <input type="button" value=" Print Label " onclick="doPrint();return false;" /> ...

Jquery Cycle Plugin: How do you pause a slideshow on load

I I want to load a Jquery Cycle slideshow and after loading pause until the user clicks the Play button. I am new to Jquery so could you give me a detailed explanation and possibly example code. You can see my slideshow @ www.sessomsphotographics.com Thank you ...

jQuery: apply plugin dynamically

hi, i'm having this markup: <div plug=tButton></div> and wrote a little plugin which makes a button ouf of the div like this: var cmd = $("[plug]"); cmd.tButton(); my question: when only having the div (and its plug-attribute), how can i apply the corresponding plugin to it (without using eval)? it should be like: var plug = div...

jQuery: using functions from inside a plugin

hi, i wrote a little jQuery button plugin - it contains a method for applying the onclick-function - here's the code (function ($) { $.fn.tButton = function () { this.setFN = function(fn) { alert("function set."); } }; })(jQuery); i'm using this code to initialize it (on a div): var button = $("#myButton")....