0
有沒有一種方法可以使用JavaScript創建GWT Widget(比較少費力)...例如下面的例子? 由於GWT編譯成JavaScript,這應該是可行的,有沒有人嘗試這個早期的......我愛GWT部件和JavaScript編程,而不是Java :)有沒有使用JavaScript創建GWT Widgets的方法?
function doSomething(){
layout = new FlexTable();
layout.spacing = 6;
cellFormatter = layout.getFlexCellFormatter();
// Add a title to the form
layout.setHTML(0, 0, 'form title');
cellFormatter.setColSpan(0, 0, 2);
cellFormatter.setHorizontalAlignment(0, 0, HasHorizontalAlignment.ALIGN_CENTER);
//......
// Wrap the content in a DecoratorPanel
decPanel = new DecoratorPanel();
decPanel.setWidget(layout);
}