我正在尝试使用GWT Bootstrap应用程序添加一个Image。我用小部件替换了小部件,但是与使用Brand小部件相比,使用GWT Image小部件时调整了ResponsiveNavBar
高度。
<ui:with field='res' type='com.mycomp.mygwt.client.Resources'/>
<b:ResponsiveNavbar position="TOP" scrollspy="false"> <!-- inverse="true" -->
<!-- <b:Brand href="#">MyApp</b:Brand> -->
<g:Image resource='{res.logo}'/>
</b:ResponsiveNavbar>
此外,为什么在GWT-Bootstrap展示中,ResponsiveNavBar
字段inverse="true"
已设置,但是当我在我的应用程序中使用它时,我收到此错误:
[ERROR] [MyGWT] - Class ResponsiveNavbar has no appropriate setInverse() method Element <b:ResponsiveNavbar inverse='true' position='TOP' scrollspy='false'> (:11)
我正在使用GWT-Bootstrap版本:2.0.4.0-SNAPSHOT
答案 0 :(得分:1)
您的问题的答案:
- 有没有办法使用ui:with resource?
将图像分配给品牌
我想不是。我相信你可以这样做:
<b:Brand href="#"><g:Image resource='{res.logo}'/></b:Brand>
如果它不起作用,只需创建一个css类“品牌”的链接,并将您的图像放入其中。
另外,为什么在GWT-Bootstrap展示中,设置了ResponsiveNavBar字段inverse =“true”,但是当我在我的应用程序中使用它时,我收到此错误:
GWT-Bootstrap 2.0.4.0基于bootstrap 2.0.4,因此,它没有此属性。试试GWT-Bootstrap 2.1。*。
希望它有所帮助。