Sure thing. Here goes:

I want to create my own UiBinder-enabled panel. This panel is a double-sided
panel as can be seen in this
example<http://developer.apple.com/library/safari/#documentation/InternetWeb/Conceptual/SafariVisualEffectsProgGuide/Transitions/Transitions.html>
.

What I would like is for clients of the double-sided panel to be able to
create the panel entirely in UiBinder, in the following way:

<c:DoubleSidedPanel ui:field="panel">
<c:front>
<g:HTML>This is the front!</g:HTML>
</c:front>
<c:back>
<g:HTML>This is the back!</g:HTML>
</c:back>
</c:DoubleSidedPanel>

And then in code they would be able to call: panel.showFront() or
panel.showBack(), as they require.

I got this working already; the obstacle is UiBinder. I don't know how to
allow for inner widgets, and furthermore widgets that are in specific areas,
such as the LayoutPanel or DockPanel do (with g:layer for example).

I've seen that the GWT code has XSD files inside it to allow for such
elements, but I can't see how it all binds together. Can anyone help with
this?

Thanks!

On Fri, Sep 9, 2011 at 4:49 PM, John LaBanca <jlaba...@google.com> wrote:

> You're best bet is to email Google-Web-Toolkit@googlegroups.com after
> joining https://groups.google.com/group/google-web-toolkit.  You can cc me
> on the email, but hopefully one of our other users will be able to answer
> your questions.
>
> If you haven't already seen it, the UiBinder Dev 
> Guide<http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html>is a 
> good resource, and there are a bunch of UiBinder examples in GWT
> samples.
>  John LaBanca | GWT Software Engineer | jlaba...@google.com
>
>
>
>
> On Fri, Sep 9, 2011 at 1:42 AM, Aviad Ben Dov <aviad.ben...@gmail.com>wrote:
>
>> Hello!
>>
>> My name is Aviad, and I'm emailing you quite randomly because I have no
>> idea who to turn to with questions regarding UiBinder other than the
>> developers themselves. I hope you're the right pick, I was just amused by
>> the Scott's Soul page so I decided to mail you.
>>
>> I read the GWT pages, documentation, even some of the code, and still I
>> have a few questions. Would it be alright if I asked a few questions? Or is
>> there someone else you could refer me to if you don't want to be bothered?
>>
>> Thanks!
>> Aviad.
>>
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to