diff options
author | Julien Dramaix <julien.dramaix@gmail.com> | 2011-03-14 21:39:00 +0000 |
---|---|---|
committer | Julien Dramaix <julien.dramaix@gmail.com> | 2011-03-14 21:39:00 +0000 |
commit | 8573fdc93952a1edff394605d8722f70470daf5d (patch) | |
tree | 53c9d5e1382957c840bfa0e26b561537be0861e1 /samples | |
parent | 42817d883130a78f18e9ef29ccf087ccbe1fa78a (diff) | |
download | gwtquery-8573fdc93952a1edff394605d8722f70470daf5d.tar.gz gwtquery-8573fdc93952a1edff394605d8722f70470daf5d.zip |
add DecoratorPanel factory
Diffstat (limited to 'samples')
-rw-r--r-- | samples/src/main/java/gwtquery/samples/client/GwtQueryWidgetModule.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/samples/src/main/java/gwtquery/samples/client/GwtQueryWidgetModule.java b/samples/src/main/java/gwtquery/samples/client/GwtQueryWidgetModule.java index 83d0169d..8faa5cf9 100644 --- a/samples/src/main/java/gwtquery/samples/client/GwtQueryWidgetModule.java +++ b/samples/src/main/java/gwtquery/samples/client/GwtQueryWidgetModule.java @@ -84,6 +84,8 @@ public class GwtQueryWidgetModule implements EntryPoint { $(".stack").as(Widgets).stackPanel();
$(".checkBox").as(Widgets).checkBox();
$(".radio").as(Widgets).radioButton();
+
+ $("body > div").as(Widgets).decoratorPanel();
GWT.log("Found " + $(".btn").widgets().size() + " buttons widget");
|