]> source.dussan.org Git - gwtquery.git/commitdiff
Adding missing methods
authorManolo Carrasco <manolo@apache.org>
Mon, 21 Apr 2014 21:37:28 +0000 (23:37 +0200)
committerManolo Carrasco <manolo@apache.org>
Mon, 21 Apr 2014 21:37:28 +0000 (23:37 +0200)
gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java
gwtquery-core/src/main/java/com/google/gwt/query/client/LazyGQuery.java

index 966956490c6fc9a264bc662bdda5797d2361fa16..2570f41106b806f62b0468dd196ca78783172da3 100644 (file)
@@ -2458,7 +2458,7 @@ public class GQuery implements Lazy<GQuery, LazyGQuery> {
 
   /**
    * Set the height style property of every matched element. It's useful for using 'percent' or 'em'
-   * units Example: $(".a").width("100%")
+   * units Example: $(".a").height("100%")
    */
   public GQuery height(String height) {
     return css("height", height);
@@ -4264,6 +4264,15 @@ public class GQuery implements Lazy<GQuery, LazyGQuery> {
     return as(Effects).slideDown(millisecs, f);
   }
 
+  /**
+   * Toggle the visibility of all matched elements by adjusting their height and firing an optional
+   * callback after completion. Only the height is adjusted for this animation, causing all matched
+   * elements to be hidden or shown in a "sliding" manner
+   */
+  public Effects slideToggle(Function... f) {
+    return as(Effects).slideToggle(f);
+  }
+
   /**
    * Toggle the visibility of all matched elements by adjusting their height and firing an optional
    * callback after completion. Only the height is adjusted for this animation, causing all matched
@@ -4822,6 +4831,14 @@ public class GQuery implements Lazy<GQuery, LazyGQuery> {
     return this;
   }
 
+  /**
+   * Set the width style property of every matched element. It's useful for using 'percent' or 'em'
+   * units Example: $(".a").width("100%")
+   */
+  public GQuery width(String width) {
+    return css("width", width);
+  }
+
   /**
    * Wrap each matched element with the specified HTML content. This wrapping process is most useful
    * for injecting additional structure into a document, without ruining the original semantic
index 992598e5b88c0d5185d487db5ca425152ffd932f..af5061743f83d242c0555aac17d40cfcbe7f72bd 100644 (file)
@@ -1108,7 +1108,7 @@ public interface LazyGQuery<T> extends LazyBase<T>{
 
   /**
    * Set the height style property of every matched element. It's useful for using 'percent' or 'em'
-   * units Example: $(".a").width("100%")
+   * units Example: $(".a").height("100%")
    */
   LazyGQuery<T> height(String height);
 
@@ -1414,7 +1414,7 @@ public interface LazyGQuery<T> extends LazyBase<T>{
    * selector that determines the content to be loaded.
    *
    */
-  LazyGQuery<T> load(String url, Properties data, Function onSuccess);
+  LazyGQuery<T> load(String url, IsProperties data, Function onSuccess);
 
   /**
    * Reduce the set of matched elements to all elements before a given position. The position of the
@@ -2167,6 +2167,13 @@ public interface LazyGQuery<T> extends LazyBase<T>{
    */
   Effects slideDown(int millisecs, Function... f);
 
+  /**
+   * Toggle the visibility of all matched elements by adjusting their height and firing an optional
+   * callback after completion. Only the height is adjusted for this animation, causing all matched
+   * elements to be hidden or shown in a "sliding" manner
+   */
+  Effects slideToggle(Function... f);
+
   /**
    * Toggle the visibility of all matched elements by adjusting their height and firing an optional
    * callback after completion. Only the height is adjusted for this animation, causing all matched
@@ -2458,6 +2465,12 @@ public interface LazyGQuery<T> extends LazyBase<T>{
    */
   LazyGQuery<T> width(int width);
 
+  /**
+   * Set the width style property of every matched element. It's useful for using 'percent' or 'em'
+   * units Example: $(".a").width("100%")
+   */
+  LazyGQuery<T> width(String width);
+
   /**
    * Wrap each matched element with the specified HTML content. This wrapping process is most useful
    * for injecting additional structure into a document, without ruining the original semantic