是否有可能在不使用 ui binder 的情况下使用 bootstrap3 元素(来自gwtboostrap3 库),而是使用 java 代码,就像使用 gwt 常规小部件完成的那样?
我在文档中找不到有关它的信息。
FE 让我们从 gwt获取按钮小部件:
public void onModuleLoad() {
// Make a new button that does something when you click it.
Button b = new Button("Jump!", new ClickHandler() {
public void onClick(ClickEvent event) {
Window.alert("How high?");
}
});
// Add it to the root panel.
RootPanel.get().add(b);
}
}
这将创建:
<button type="button" class="gwt-Button">Jump!</button>
在 gwtbootstrap3 我必须做这样的事情:
<b:Button type="DEFAULT"/>
请帮帮我。
是否可以使用 gwtbootstrap3 库组件,如纯 java 按钮而不是 uibinder xml 文件?
有没有开箱即用的解决方案?
或者也许我应该编写自己的类来扩展本机 gwt 小部件并添加与引导相关的 css 类?