Changeset 7153

Show
Ignore:
Timestamp:
10/15/07 16:36:24 (13 months ago)
Author:
ecn
Message:
 * Wrapped an event console population bug in a try so that the "Loading..." box will disappear
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Products/ZenWidgets/skins/zenui/javascript/zengrid.js

    r7124 r7153  
    407407            this.updateStatusBar(offset); 
    408408            if(this.numRows+offset!=this.buffer.totalRows) 
    409                 this.populateTable(this.buffer.getRows(offset, this.numRows)); 
     409                try { 
     410                    this.populateTable( 
     411                        this.buffer.getRows(offset, this.numRows)); 
     412                } catch(e) { noop(); } 
     413                this.killLoading(); 
    410414        }, this)); 
    411415    },