org.wicketstuff.select2.JQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicketstuff-select2 Show documentation
Show all versions of wicketstuff-select2 Show documentation
Bridges Apache Wicket with Select2 components
package org.wicketstuff.select2;
public class JQuery
{
private JQuery()
{
}
public static String execute(String script, Object... params)
{
return "(function($) { " + String.format(script, params) + " })(jQuery);";
}
}