I can not respond under your answer (Basil Bourque)...
My Basic idea is that page with text (+btn,check) should work on old computer well.
10 seconds it takes on old computer - Pentium 4 1.6Ghz (year 2000)+FF,Opera. (Computer has no problems with Eclipse,internet browsing, tomcat, bea... )
but this:
//200 basic components in Vaadin6.7.5.
Button btn = new Button("GO!");
mainWindow.addComponent(btn);
btn.addListener(new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
Panel vl = new Panel();
vl.setSizeFull();
for (int i=0;i<100;i++){
HorizontalLayout hl = new HorizontalLayout();
hl.addComponent(new Label("TITLE "));
hl.addComponent(new Label("VALUE "+i));
vl.addComponent(hl);
}
mainWindow.addComponent(vl);
}
});
Takes more than 10 seconds. In echo2 - no problem at all. (see below)
Pentium 2.4Gz 2.3secs. Is it fast? No - that's slow too.
I wrote that Vaadin lacks fast basic components and that's true. In echo2 I could mix up basic components as I like. Pretty fast. Echo is maybe 5-15 times faster than Vaadin. I did not write that page with few components are slow. Sometimes it is 0,1Echo 0,5Vaadin - but in the fact its >500% slower.
Your example (on that old 1.6G) needs 3 seconds to process. On 2.4Ghz 1.1s.
Next problem with Vaadin is Table with more columns -> 100colums is a problem. (different story)
Echo2 source; on FireFox intel P4 1.6Ghz 1.5 sec!!!
final Window win = new Window();
final ContentPane content = new ContentPane();
final Column mainColumn = new Column();
mainColumn.add(mainColumn);
content.add(mainColumn);
Button btn = new Button("GO");
mainColumn.add(btn);
btn.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent arg0) {
for (int i=0;i<100;i++){
Row row = new Row();
row.add(new Label("VALUE"));
row.add(new Label("TITLE"+i));
mainColumn.add(row);
}
}
});
win.setContent(content);
return win;
PS:The problem "200 basic components in Vaadin" I've solved with HTML generating - poor solution, but fast. (2012 and I'm generating HTML...) (I can not use Table or Grid!)
PS. This is not a cry like you've written in blog. This is just CONS related to Vaadin requested by 'sridar'.
Br,
PeterM