On Dec 21, 4:25 am, ajaxDeveloper <[email protected]> wrote: > Hi guys. > > I need to know that if I am generating xml string programmatically > then how can I use UIBinder.
UiBinder is a *compile-time* feature. If you want something similar at runtime, then you'd have to manually do what UiBinder generates for you: create an HTMLPanel with some elements having a specific ID (generally unique, created through HTMLPanel.createUniqueId()) and then use addElement or addAndReplaceElement to insert your widgets at the appropriate place. -- 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.
