2

I've seen that the Bootstrap topbar have been moved to deprecated.

What would be the alternative ? Use the WAppFrame and the set_top_bar method ?

Or use the methods provided by the Navigation module ? But there is no topbar in this module.

What would you advise ?

Thanks,

4

2 に答える 2

2

非推奨のバージョンは、Bootstrap<=1.4.0用です。

新しいCSSを使用する場合は、代わりに次のモジュールを使用する必要があります:http: //doc.opalang.org/module/stdlib.widgets.bootstrap/WBootstrap

に相当するものはNavigation.topbarですNavigation.navbar

于 2012-05-04T14:59:54.393 に答える
0

参考までに、これは topbar を持つ同じ動作を取得するために使用したコードです。

nav = WB.Navigation.nav([{active:<>Home</>, onclick:ignore, href:some("/")}, {inactive:<>LoginLess</>, onclick:ignore, href:some("/boubou")}, {inactive:<>Sign up</>, onclick:ignore, href:some("user/new")}], false)
navBar = WB.Navigation.brand(<>Brand New</>, none, ignore) <+> nav
WB.Navigation.navbar(nav)
于 2012-05-08T20:05:14.413 に答える