Hi,

we are evaluating GWT (actually GXT on top of it) and everything was
perfect until we had to reproduce the final look and feel.

What we want to achieve is for example something like this:

 <!--  Shopping basket HTML to be replaced by GWT       -->
            <div class="line">
                <div class="size1of1 shopping-cart-comp empty">
                    <div class="content">
                        <h2 class="shopping-cart-header">Shopping
cart</h2>
                        <table class="shopping-cart-contents">
                            <tbody>
                                <tr>
                                    <td class="amount">0</td>
                                    <td colspan="2">Items in your
shopping cart</td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                    <div class="price-action">
                        <div class="action">
                            <a href="" class="more-info-link">Show
cart</a>
                        </div>
                    </div>
                    <div class="border-component">
                        <div class="top-left"></div>
                        <div class="top-right"></div>
                        <div class="bottom-left"></div>
                        <div class="bottom-right"></div>
                    </div>
                </div>
            </div>

with the same styles associated but it seems quite difficult since the
HTML is dinamically generated.

Overwriting the on Render method seems to me to complex and BTW a risk
since the code working fine with one GWT version today couldn't
working after an upgrade.
I would love to have something like in Wicket where the HTML template
s specified and than the final page is rendered based on that leading
HTML.

I saw different templating extensions for GWt but I'm not sure if
there is one fitting our needs. Is there something out there? Which is
the best approach to follow (extending the base template, etc. etc.)?


Thanks in advance,
Vincenzo.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to