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...
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...
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?
...
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...
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...
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...
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...
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?
...
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"];
...
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...
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...
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...
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...
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 ...
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...
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...
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;" />
...
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
...
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...
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")....