Package org.odlabs.wiquery.core.javascript

Examples of org.odlabs.wiquery.core.javascript.JsQuery


   *
   * @return the associated JsStatement
   */
  public JsStatement refresh()
  {
    return new JsQuery(this).$().chain("accordion", "'refresh'");
  }
View Full Code Here


   *
   * @return the associated JsStatement
   */
  public JsStatement disable()
  {
    return new JsQuery(this).$().chain("slider", "'disable'");
  }
View Full Code Here

   *
   * @return the associated JsStatement
   */
  public JsStatement widget()
  {
    return new JsQuery(this).$().chain("accordion", "'widget'");
  }
View Full Code Here

   *
   * @return the associated JsStatement
   */
  public JsStatement enable()
  {
    return new JsQuery(this).$().chain("slider", "'enable'");
  }
View Full Code Here

   * @param value
   * @return the associated JsStatement
   */
  public JsStatement value(int value)
  {
    return new JsQuery(this).$().chain("slider", "'value'", Integer.toString(value));
  }
View Full Code Here

   *
   * @return the associated JsStatement
   */
  public JsStatement values()
  {
    return new JsQuery(this).$().chain("slider", "'values'");
  }
View Full Code Here

   * @param value
   * @return the associated JsStatement
   */
  public JsStatement values(int index, int value)
  {
    return new JsQuery(this).$().chain("slider", "'values'", Integer.toString(index),
      Integer.toString(value));
  }
View Full Code Here

   *
   * @return the associated JsStatement
   */
  public JsStatement widget()
  {
    return new JsQuery(this).$().chain("slider", "'widget'");
  }
View Full Code Here

  public void renderHead(Component component, IHeaderResponse response)
  {
    super.renderHead(component, response);
    response.render(JavaScriptHeaderItem.forReference(ResizableJavaScriptResourceReference
      .get()));
    response.render(OnDomReadyHeaderItem.forScript(new JsQuery(this.getComponent()).$()
      .chain("resizable", this.options.getJavaScriptOptions()).render()));
  }
View Full Code Here

   *
   * @return the associated JsStatement
   */
  public JsStatement destroy()
  {
    return new JsQuery(getComponent()).$().chain("resizable", "'destroy'");
  }
View Full Code Here

TOP

Related Classes of org.odlabs.wiquery.core.javascript.JsQuery

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.