I have been looking over the ColumnDefinition code from http://code.google.com/webtoolkit/articles/mvp-architecture-2.html "MVP Architecture 2". In particular the "render" method. We have considered using UiBinder in the render portions. The concern some of us have are the performance implications. Consider an example where we generate a table with 10 columns and 100 rows. Just like in the architecture each row is a model object. The though is instead of using inner html to render (probably the fastest way) we're considering using a UiBinder.ui.xml view instantiated multiple times (once per row). So based on my example above we'd have 100 model objects, and UiBinder fragmets. The reason we've considered this method is to remove html code generation in Java.
I was wondering what everyone thought about this or if they have another idea? -Adam -- 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.
