Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    [ERROR] Row heights not yet available <- what triggers this?

    (SC_SNAPSHOT-2011-03-15/PowerEdition Deployment 2011-03-15)
    Browser: Firefox/3.6.15

    Hello, since a few weeks (ie. since like the nightlies of 3 weeks ago), I have been encountering this error shown below, upon refetching data in a listgrid. I wonder what it triggers. When this error is triggered (it is really spammed in my console, when it happens, probably happens for each row), the ListGrid doesn't show the data, so it is quite a showstopper.

    I haven't come further than noticing that, If I scroll a listgrid half way, then switch a tab (the grid is part of a tabset), and switch back (which triggers a refetch, that's the way I programmed it), then the following error occurs.

    As far as I can see in the code there is no code that sets or gets the heights of a row. Any thoughts or hints?

    Below the stacktrace I put my grid initialization (hope it's readable/useful)
    Code:
    13:46:50.640 [ERROR] [generatedcode] 13:46:50.562:TMR2:WARN:GridBody:isc_UsedEnergyRichTableView_1_0_body:row heights not yet available; returning all zeroes
    
    com.smartgwt.client.core.JsObject$SGWT_WARN: 13:46:50.562:TMR2:WARN:GridBody:isc_UsedEnergyRichTableView_1_0_body:row heights not yet available; returning all zeroes
        at sun.reflect.GeneratedConstructorAccessor47.newInstance(Unknown Source)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:105)
        at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:157)
        at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:281)
        at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:531)
        at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:352)
        at java.lang.Thread.run(Thread.java:680)
    my grid initialization code:
    Code:
    grid.setWidth100();
    grid.setHeight100();
    Log.debug("Initializing UsedEnergyRichTableView");
    grid.setAlternateRecordStyles(true);
    // grid.setCellHeight(22);  
    grid.setDataSource(dataSource);
    grid.setAutoFetchData(false);
    grid.setCanEdit(true);  
    grid.setModalEditing(true);
    grid.setShowFilterEditor(true);
    grid.setDoubleClickDelay(30);
    //mobile version should get single click edit
    if (EnergySystemApplicationPanel.isMobileBrowser()) {
    	grid.setEditEvent(ListGridEditEvent.CLICK);
    } else {
    	grid.setEditEvent(ListGridEditEvent.DOUBLECLICK);
    }
    
    grid.setListEndEditAction(RowEndEditAction.DONE);
    grid.setCanRemoveRecords(false); 
    grid.setAutoSaveEdits(true);
    grid.setShowRecordComponents(true);
    grid.setShowRecordComponentsByCell(true);
    //... initialization of fields. Clipped (could post if deemed necessary)
    Last edited by Sytematic; 16 Mar 2011, 05:01.

    #2
    This isn't really useful information, unfortunately.

    If you can show the code that is being run when this warning appears, we might be able to identify the cause.

    If you can provide a runnable test case, then we definitely can.

    Comment


      #3
      1. SmartGWT 2.0.3
      2. N/A
      3.
      Code:
      18:58:01.147  [ERROR] 11:08:39.400:TMR5:WARN:GridBody:isc_OID_705_body:row heights not yet available; returning all zeroes
      <pre>com.smartgwt.client.core.JsObject$SGWT_WARN: 11:08:39.400:TMR5:WARN:GridBody:isc_OID_705_body:row heights not yet available; returning all zeroes
      	at sun.reflect.GeneratedConstructorAccessor73.newInstance(Unknown Source)
      	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
      	at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
      	at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:105)
      	at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
      	at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:157)
      	at com.google.gwt.dev.shell.BrowserChannel.reactToMessages(BrowserChannel.java:1668)
      	at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:401)
      	at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:222)
      	at java.lang.Thread.run(Thread.java:680)</pre>
      This error and others like it spam continuously until the ListGrid mentioned is displayed.

      5. I do not have a simple repro case unfortunately. The situation is that I create a ListGrids inside DynamicForms that are in turn "owned" by SectionItems that are created and drawn collapsed. Until I open those sections and see the offending grid for the first time those warnings spawn continuously. This happens rather randomly as far as I can tell -- not all such ListGrids spawn these warnings even though they are all created and used the same way.

      Comment


        #4
        Try this with a recent version of SmartGWT. If it's still happening, just a little more detail would probably allow us to figure out the cause: how are the ListGrid's embedded into the form, with code for the form, section, grid, and canvasItem if there is one.

        Comment


          #5
          Thanks for the quick response, yes, I should upgrade.

          Comment


            #6
            One of last weeks nightlies (posted above) still has this.

            Yeah, my grid is also embedded in a section stack, but I doubt if that is the problem, because not all my grids that are embeded in section stack exhibit this behaviour.

            I'll try to fix a test case now, but at the moment it is quite a large code base, so I am trying to narrow down the problem first, ie. by removing columns to see if one column is triggering things.

            Comment


              #7
              So, I discovered that upon a call of fetchData() this happened, and my 'refresh' method has this line in it:

              Code:
              public void refreshData() {
              	this.grid.invalidateCache(); // <---- this line triggers the issue. Removing it fixes it.
              
              	if (grid.getCriteria() == null) {
              		this.grid.fetchData();
              	} else {
              		this.grid.fetchData(grid.getCriteria());
              	}
              
              }
              Maybe this is still too high level, but at least it is some extra info.
              I removed all but one columns from my grid by modifying the grid.setFields(...) method, but that didn't help.

              Recall that it only happens when the grid is scrolled (ie. scrollbar is not on top).

              Comment


                #8
                You generally would not both call invalidateCache and fetchData(). InvalidCache will automatically fetch new data.

                Comment


                  #9
                  Upgraded to gwt2.2 and smartGWT 2.4, still seeing the problem.

                  Here is the hierarchy:
                  HLayout
                  HLayout
                  TabSet
                  DynamicForm (Pane)
                  SectionItem (collapsed)
                  DynamicForm (editor)
                  CanvasItem
                  Toolbar
                  ListGrid

                  When the pane containing editor is displayed, the editor section is collapsed.
                  At that time there is a warning from the toolbar:
                  Code:
                  MDN0[E]:WARN:Toolbar:isc_Toolbar_0:ignoring bad or negative width: -2
                  The second time that pane is displayed (section still collapsed):
                  Code:
                  RDQ1:WARN:GridBody:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body:row heights not yet available; returning all zeroes
                  TMR2:WARN:GridBody:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body:row heights not yet available; returning all zeroes
                  TMR4:WARN:GridBody:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body:row heights not yet available; returning all zeroes
                  ...
                  repeating for TMR0 through TMR9 until the section is expanded, even if that pane is hidden again. Displaying any other pane with the same kind of hidden ListGrid also causes these warnings to start occurring from that point on.

                  Making a cut down test case will take too much time for me right now -- I'll be working around this by making those sections expanded by default.

                  I'm not doing any invalidateCache calls in this scenario, however, data is being fetched for the grid from the server (custom json api, not serverlet).

                  I wonder if I postponed the fetch to when the grid actually shows if that would solve the problem. What would be the best way to do that? Override the ListGrid's show()?

                  Comment


                    #10
                    Actually with this additional detail a different cause is suggested: it looks like when the components initially draw, they draw with too little area. You may also be seeing log messages like "negative or zero height, refusing to draw"?

                    Try turning on the "draws" and "clears" log categories. You may see that components are drawing earlier than you expected, or drawing twice.

                    Comment


                      #11
                      Yes, I have seen "refusing to draw" messages from some controls but not consistently however.

                      On the form in question there are 6 sections that all together manage about 100 controls -- no such messages from any of them.

                      The first time isc_OQDynamic_Form_19 (a container form holding a ListGrid inside a CanvasItem and is being controlled by a SectionItem) is displayed:
                      Code:
                      09:29:19.409:MDN8[E]:INFO:draws:isc_Item_Form_0:draw(): drawing DynamicForm with parent: [PaneContainer ID:isc_TabSet_4_paneContainer]
                      09:29:19.420:MDN8[E]:INFO:draws:isc_OQDynamicForm_19:draw(): drawing DynamicForm with parent: [DynamicForm ID:isc_Item_Form_0]
                      09:29:19.437:MDN8[E]:INFO:draws:isc_EditItemGroupGrid_0:draw(): drawing VLayout with parent: [DynamicForm ID:isc_OQDynamicForm_19]
                      09:29:19.444:MDN8[E]:INFO:draws:isc_ToolStrip_6:draw(): drawing ToolStrip with parent: [VLayout ID:isc_EditItemGroupGrid_0]
                      09:29:19.452:MDN8[E]:INFO:draws:isc_ImgButton_24:draw(): drawing ImgButton with parent: [ToolStrip ID:isc_ToolStrip_6]
                      09:29:19.461:MDN8[E]:INFO:draws:isc_ImgButton_25:draw(): drawing ImgButton with parent: [ToolStrip ID:isc_ToolStrip_6]
                      09:29:19.469:MDN8[E]:INFO:draws:isc_ImgButton_23:draw(): drawing ImgButton with parent: [ToolStrip ID:isc_ToolStrip_6]
                      09:29:19.477:MDN8[E]:INFO:sizing:isc_ImgButton_25:Specified size: 24x24, drawn scroll size: 24x24, border: 0x0, margin: 0x0, reason: parentDrawn
                      09:29:19.478:MDN8[E]:INFO:sizing:isc_ImgButton_23:Specified size: 24x24, drawn scroll size: 24x24, border: 0x0, margin: 0x0, reason: parentDrawn
                      09:29:19.537:MDN8[E]:INFO:draws:isc_EditItemGroupGrid_DisplayDefinitionGrid_1:draw(): drawing ListGrid with parent: [VLayout ID:isc_EditItemGroupGrid_0]
                      09:29:19.543:MDN8[E]:WARN:Toolbar:isc_Toolbar_0:ignoring bad or negative width: -2 [enable 'sizing' log for stack trace]
                      09:29:19.583:MDN8[E]:INFO:draws:isc_Toolbar_0:draw(): drawing Toolbar with parent:[ListGrid ID:isc_EditItemGroupGrid_DisplayDefinitionGrid_1]
                      09:29:19.590:MDN8[E]:INFO:draws:isc_ImgButton_29:draw(): drawing ImgButton with parent: [Toolbar ID:isc_Toolbar_0]
                      09:29:19.592:MDN8[E]:INFO:draws:isc_ImgButton_29_label:draw(): drawing Label with parent: [Toolbar ID:isc_Toolbar_0]
                      09:29:19.603:MDN8[E]:INFO:sizing:isc_ImgButton_29:Specified size: 100x23, drawn scroll size: 98x23, border: 0x2, margin: 0x0, reason: parentDrawn
                      09:29:19.606:MDN8[E]:INFO:sizing:isc_ImgButton_29_label:Specified size: 98x23, drawn scroll size: 98x23, border: 0x0, margin: 0x0, reason: parentDrawn
                      09:29:19.607:MDN8[E]:INFO:sizing:isc_Toolbar_0:Specified size: 100x23, drawn scroll size: 100x23, border: 0x0, margin: 0x0, reason: draw
                      09:29:19.609:MDN8[E]:INFO:draws:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_sorter:draw(): drawing ImgButton with parent:[ListGrid ID:isc_EditItemGroupGrid_DisplayDefinitionGrid_1]
                      09:29:19.612:MDN8[E]:INFO:draws:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_sorter_label:draw(): drawing Label with parent:[ListGrid ID:isc_EditItemGroupGrid_DisplayDefinitionGrid_1]
                      09:29:19.622:MDN8[E]:INFO:draws:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body:draw(): drawing GridBody with parent:[ListGrid ID:isc_EditItemGroupGrid_DisplayDefinitionGrid_1]
                      09:29:19.650:MDN8[E]:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_sorter:Specified size: 16x23, drawn scroll size: 15x23, border: 0x1, margin: 0x0, reason: parentDrawn
                      09:29:19.650:MDN8[E]:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_sorter_label:Specified size: 15x23, drawn scroll size: 15x23, border: 0x0, margin: 0x0, reason: parentDrawn
                      09:29:19.652:MDN8[E]:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body:Specified size: 14x75, drawn scroll size: 100x75, border: 0x0, margin: 0x0, reason: parentDrawn
                      09:29:19.676:MDN8[E]:INFO:draws:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body_hscroll:draw(): drawing Scrollbar with parent:[ListGrid ID:isc_EditItemGroupGrid_DisplayDefinitionGrid_1]
                      09:29:19.703:MDN8[E]:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body_hscroll:Specified size: 14x16, drawn scroll size: 37x16, border: 0x0, margin: 0x0, reason: draw
                      09:29:19.704:MDN8[E]:INFO:draws:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body_hscroll_thumb:draw(): drawing HScrollThumb with parent:[ListGrid ID:isc_EditItemGroupGrid_DisplayDefinitionGrid_1]
                      09:29:19.711:MDN8[E]:INFO:draws:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body_hscroll_thumb_label:draw(): drawing Label with parent:[ListGrid ID:isc_EditItemGroupGrid_DisplayDefinitionGrid_1]
                      09:29:19.720:MDN8[E]:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body_hscroll_thumb_label:Specified size: 5x16, drawn scroll size: 5x16, border: 0x0, margin: 0x0, reason: draw
                      09:29:19.731:MDN8[E]:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body_hscroll_thumb:Specified size: 5x16, drawn scroll size: 5x16, border: 0x0, margin: 0x0, reason: draw
                      09:29:19.741:MDN8[E]:INFO:sizing:isc_ToolStrip_6:Specified size: 450x24, drawn scroll size: 72x24, border: 2x2, margin: 0x0, reason: parentDrawn
                      09:29:19.745:MDN8[E]:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1:Specified size: 16x100, drawn scroll size: 100x98, border: 2x2, margin: 0x0, reason: parentDrawn
                      09:29:19.756:MDN8[E]:INFO:sizing:isc_EditItemGroupGrid_0:Specified size: 16x100, drawn scroll size: 450x126, border: 0x0, margin: 0x0, reason: draw
                      09:29:19.836:MDN8[E]:INFO:sizing:isc_OQDynamicForm_19:Specified size: 100x20, drawn scroll size: 584x312, border: 0x0, margin: 0x0, reason: draw
                      I then switch to a different UI ( another form with collapsed sections but no ListGrids) and return to the first. so this is the second time OQ_DynamicForm_19 is displayed -- still collapsed. The first logging messages involving any of the controls in question are:

                      Code:
                      09:29:35.300:MDN6[E]:INFO:sizing:isc_ProjectItemEdit_Generic_Form_3:Specified size: 1136x545, drawn scroll size: 1136x545, border: 0x0, margin: 0x0, reason: parentDrawn
                      09:29:35.305:MDN6[E]:INFO:sizing:isc_GridEdit_FeatureEdit_0:Specified size: 1136x545, drawn scroll size: 1136x545, border: 0x0, margin: 0x0, old size: 1136x545, reason: undefined
                      09:29:38.228:MDN2[E]:INFO:sizing:isc_GridEdit_FeatureEdit_0:Specified size: 1136x545, drawn scroll size: 1136x545, border: 0x0, margin: 0x0, old size: 1136x545, reason: undefined
                      09:29:39.882:RDQ0:WARN:GridBody:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body:row heights not yet available; returning all zeroes
                      09:29:40.039:TMR3:WARN:GridBody:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body:row heights not yet available; returning all zeroes
                      
                      ... forever until section is expanded, then
                      
                      09:29:46.882:RDQ3:INFO:sizing:isc_Item_Form_0:Specified size: 1121x508, drawn scroll size: 1121x508, border: 0x0, margin: 0x0, old size: 1121x508, reason: redraw
                      09:29:46.903:TMR6:INFO:sizing:isc_ImgButton_29:Specified size: 965x23, drawn scroll size: 963x23, border: 0x2, margin: 0x0, reason: undefined
                      09:29:46.904:TMR7:INFO:sizing:isc_Toolbar_0:Specified size: 965x23, drawn scroll size: 965x23, border: 0x0, margin: 0x0, reason: child resize
                      09:29:46.905:TMR8:INFO:sizing:isc_ImgButton_29_label:Specified size: 963x23, drawn scroll size: 963x23, border: 0x0, margin: 0x0, reason: undefined
                      09:29:46.907:TMR0:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1:Specified size: 983x100, drawn scroll size: 981x98, border: 2x2, margin: 0x0, old size: 100x98, reason: childResized
                      09:29:46.910:TMR0[E]:INFO:sizing:isc_EditItemGroupGrid_0:Specified size: 983x100, drawn scroll size: 983x126, border: 0x0, margin: 0x0, old size: 450x126, reason: undefined
                      09:29:46.924:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 584x312, reason: delayed
                      09:29:46.937:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.939:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.940:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.942:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.943:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.945:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.948:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.950:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.951:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.953:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.954:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.956:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.957:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.959:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.962:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.964:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.965:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.967:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.968:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.970:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.971:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.973:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.976:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.977:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.979:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.980:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.982:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.984:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.985:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.987:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:46.991:TMR6:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body:Specified size: 981x75, drawn scroll size: 981x59, border: 0x0, margin: 0x0, reason: delayed
                      09:29:47.001:TMR6:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body_hscroll:Specified size: 1x1, drawn scroll size: 37x1, border: 0x0, margin: 0x0, reason: resize
                      09:29:47.004:TMR6:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body_hscroll_thumb:Specified size: 5x1, drawn scroll size: 5x1, border: 0x0, margin: 0x0, reason: resize
                      09:29:47.006:TMR6:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body_hscroll_thumb_label:Specified size: 5x1, drawn scroll size: 5x10, border: 0x0, margin: 0x0, reason: resize
                      09:29:47.008:TMR6:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1_body:Specified size: 981x75, drawn scroll size: 981x75, border: 0x0, margin: 0x0, reason: delayed
                      09:29:47.008:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:47.010:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:47.010:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:47.011:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:47.012:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:47.013:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:47.013:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:47.014:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:47.015:TMR6:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: delayed
                      09:29:48.114:RDQ4:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: redraw
                      09:29:48.133:RDQ4:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: isc_CheckboxItem_56  overflow changed: textBox value changed
                      09:29:48.138:RDQ4:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: isc_CheckboxItem_57  overflow changed: textBox value changed
                      09:29:48.143:RDQ4:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: isc_CheckboxItem_58  overflow changed: textBox value changed
                      09:29:48.147:RDQ4:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: isc_CheckboxItem_59  overflow changed: textBox value changed
                      09:29:48.151:RDQ4:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: isc_CheckboxItem_60  overflow changed: textBox value changed
                      09:29:48.156:RDQ4:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: isc_CheckboxItem_61  overflow changed: textBox value changed
                      09:29:48.160:RDQ4:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: isc_CheckboxItem_62  overflow changed: textBox value changed
                      09:29:48.164:RDQ4:INFO:sizing:isc_OQDynamicForm_19:Specified size: 1117x20, drawn scroll size: 1117x312, border: 0x0, margin: 0x0, old size: 1117x312, reason: isc_CheckboxItem_63  overflow changed: textBox value changed
                      09:29:48.211:RDQ4:INFO:sizing:isc_Item_Form_0:Specified size: 1121x508, drawn scroll size: 1121x508, border: 0x0, margin: 0x0, old size: 1121x508, reason: redraw
                      09:29:48.221:TMR6:INFO:sizing:isc_EditItemGroupGrid_DisplayDefinitionGrid_1:Specified size: 983x100, drawn scroll size: 981x98, border: 2x2, margin: 0x0, old size: 981x98, reason: childVisChange
                      There are no explicit calls to draw() other than at the very very top of the app. There are no ResizeHandlers and getResizeFields is false. I suppose I was surprised to see OQDynamic_Form_19 being drawn at all since it is supposed to be collapsed/hidden.

                      Comment


                        #12
                        I had this problem and the cause was that the REST service was informing the wrong count of total rows (<totalRows/>). This made the ListGrid get confused. After fixing it, everything is ok.

                        Comment

                        Working...
                        X