Show
Ignore:
Timestamp:
08/27/08 08:31:34 (5 months ago)
Author:
matti.tahvonen@…
Message:

fixed npe (invalid rendered table) on reload

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/com/itmill/toolkit/terminal/gwt/client/ui/IScrollTable.java

    r5260 r5274  
    171171        firstvisible = uidl.hasVariable("firstvisible") ? uidl 
    172172                .getIntVariable("firstvisible") : 0; 
    173         if (firstvisible != lastRequestedFirstvisible) { 
     173        if (firstvisible != lastRequestedFirstvisible && tBody != null) { 
    174174            // received 'surprising' firstvisible from server: scroll there 
    175175            firstRowInViewPort = firstvisible;