Hi,
UiBinder can't seem to take non standard CSS properties.

I have the following:

<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
             xmlns:g='urn:import:com.google.gwt.user.client.ui'>

  <ui:style>
  .test {
    -moz-border-radius: 4px;
  }
  </ui:style>

  <g:HTMLPanel>
    <input type="text" class="{style.test}" />
  </g:HTMLPanel>
</ui:UiBinder>

And it shows the following warning when trying to display the page:
21:01:53.994 [WARN] [gwtsandbox] Line 3 column 20: encountered "-".
Was expecting one of: "}" ";" <IDENT>

Is this as designed that you can't use non standard CSS properties?
Thanks,

-- 
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