Child pages
  • Creating Client Plugins

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

This page is loosely based on a great manual written by Patrick Talbot (as found on the Servoy forum), and is done so with the author's approval.


Stoc

Client plugins are java classes contained in jar files stored under "/ServoyInstallDir/application_server/plugins/" folder, and by which you can add new features to Servoy Developer.

...

Code Block
var domainName = "";
var result = "";

function onQueryWhois()
{
	if (domainName != null && domainName.length > 0) {
		result = plugins.whois.query(domainName, "whois.internic.net");
	}
}

Running Smart Client


 

...