0

我正在尝试使用我的 GWT Bootstrap 应用程序添加图像。我用小部件替换了小部件,但是ResponsiveNavBar与使用 Brand 小部件相比,使用 GWT Image 小部件时高度会调整大小。

    <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>
  • 有没有办法使用 ui:with 资源将图像分配给品牌?
  • 另外,为什么在 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

4

1 回答 1

1

您的问题的答案:

- 有没有办法使用 ui:with 资源将图像分配给品牌?

我想不是。我相信您可以执行以下操作:

<b:Brand href="#"><g:Image resource='{res.logo}'/></b:Brand>

如果它不起作用,只需创建一个带有 css 类“品牌”的链接,并将您的图像放入其中。

Also, why in the GWT-Bootstrap showcase, the ResponsiveNavBar field inverse="true" is set, but when I use it in my application I get this error:

GWT-Bootstrap 2.0.4.0 is based on bootstrap 2.0.4, so, it doesn't have this property. Try GWT-Bootstrap 2.1.*.

Hope it helps.

于 2012-11-30T11:44:37.597 回答