JavaScriptを使用して(少ない労力で)GWTウィジェットを作成する方法はありますか...たとえば、以下のようになりますか?GWTはJavaScriptにコンパイルされるので、これは可能であるはずです。誰かが以前にこれを試みたことがあります...私はGWTウィジェットとJavaScriptが好きですが、Javaは好きではありません:)
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);
}