On 13 août, 20:04, Thamizharasu S <[email protected]> wrote: > Hi All, > > Where can I find the full list of property reference for UiBinder > controls in xml file? > > For example, any GWT elements can be bind with UiBinder. Sometimes it > is confusing to identify the correct property name and some available > values. > > Can any one point to identify it for my reference?
>From the doc: """See how the g:ListBox element has a visibleItemCount='1' attribute? That becomes a call to ListBox#setVisibleItemCount(int). Every one of the widget's methods that follow JavaBean-style conventions for setting a property can be used this way.""" http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html#Hello_Widget_World Widgets with special parsers have a "Use in UiBinder Templates" section in their respective JavaDoc. For instance: http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/DisclosurePanel.html http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/DockLayoutPanel.html http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/LayoutPanel.html -- 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.
