How to declare dependent style names with UiBinder

后端 未结 6 1746
攒了一身酷
攒了一身酷 2020-12-05 02:38

I have a simple UiBinder widget containing a TextArea:




        
6条回答
  •  Happy的楠姐
    2020-12-05 03:08

    At this moment (GWT 2.4) it is not supported, and it's not clear if/when it will be supported, see issue 4746 in the GWT issue tracker.

    The workaround is to add @external, which disables obfuscation for those styles. In this case that would be:

    @external textBoxStyle, textBoxStyle-readonly;
    

提交回复
热议问题