mProcessTable.getRowFormatter().setVerticalAlign(
index, HasVerticalAlignment.ALIGN_TOP);
setRowStyleBasedOnProcess(index, p);
FastTree t = new FastTree();
FastTreeItem properties = new FastTreeItem("Properties") {
public void beforeOpen() {
mController.openProcess(p);
}
};
t.addItem(properties);
//Following line is workaround for gwt bug
//See http://code.google.com/p/google-web-toolkit/issues/
//detail?id=369
DOM.setStyleAttribute(t.getElement(), "position", "static");
mProcessTable.setWidget(index, 1, t);
properties.becomeInteriorNode();
}
index++;
}