You cannot post messages because only members can post, and you are not currently a member.
Description:
The official GWT-FX developer discussion group. GWT-FX allows you to add powerful native animations and effects to your GWT application.
|
|
|
Javadocs now online
|
| |
Hi all- The Javadocs for the two most recent versions of GWT-FX are now online: 0.5 (Oct 2009) [link] 4.0 (Apr 2009) [link] These and other useful links are available on the project homepage: [link]... more »
|
|
Slide Effect Layering
|
| |
Hi, I am trying to have one panel (p2) slide down from behind another
panel (p1). Both panels are children of a VerticalPanel that has a
background image. I am using a slide down effect for p2.
Unfortunately, I am having trouble getting p2 to be rendered below
(hidden) p1 before the effect is played. No matter how high I set the... more »
|
|
Resizing a FlowPanel containing widgets
|
| |
Hello, i'm trying to resize a FlowPanel (div element with
display:block) that contains other widgets (other panels and labels)
This panel is in a vertical panel but i cannot play the effect because
of an exception:
java.lang.RuntimeException: Computed style for width is auto - try
setting a start value explicitly... more »
|
|
GWT-FX application on UiBinder
|
| |
Hi,
I'm relatively new in GWT, so this might be a stupid question.
Is there any way that I can add the effects to UiBinder widgets?
Because UiBinder widget is not an element and it throws an error every
time I try to.
|
|
iPhone slider effect
|
| |
Is there a way to slide between to pages like on an iPhone? It means
that while a page is sliding out to the left, a new page is sliding in
that the right edge of the old page is connected to the left edge of
the new phone.
|
|
maven for gwt-fx
|
| |
Hi Folks,
Is there somewhere a maven repository for the latest gwt-fx?
Thanks,
Guy
|
|
Flicker problem on looped effects
|
| |
Hi there,
I'm working on a very simple looped fade effect that just fades out an
image, inverts the effect, and fades it in, and so on. I'm running
into a problem that after the second call to inverting the effect, the
image flickers and the starts over again.
I have also had this problem using a slide effect. I'm using version... more »
|
|
applying an effect to more than one element
|
| |
I was having trouble making more than one element move at the same
time.
So I took the exact example:
Fade theFade = new Fade();
Label theLabel1 = new Label("Some test text");
Label theLabel2 = new Label("Some test text");
Label theLabel3 = new Label("Some test text");
Button theButton = new Button("Some button");... more »
|
|
Fade for SplitLayoutPanel doesn't work
|
| |
Hi all,
It seems that Fade doesn't work for SplitLayoutPanel.
Any idea why?
public void onModuleLoad() {
final SplitLayoutPanel panel = new SplitLayoutPanel();
Button fadeButton = new Button("Fade Me");
panel.add(fadeButton);
RootLayoutPanel.get().add(pane l);
final Fade theFade = new Fade(panel.getElement());... more »
|
|
|