Announcement

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

    Hiding/unhiding columns using listgrid header right click menu

    Using SmartGWT Pro -2.5
    FireFox -13.0.1
    IE -8.0.7600.1
    Scroll issue Hiding/unhiding columns using listgrid right click menu in FireFox.

    We have a listgrid with quite a few columns and when using the listgrid's header right click menu to check/uncheck to hide/unhide columns - When the user selects a column which is way down in the menu - after the check/uncheck operation the menu scrolls up to the top automatically in FireFox.

    In IE - the menu does not scroll automatically to the top and remains at the menu item the user selected.

    How to fix this issue

    #2
    We have a fix for this which will hit the nightly builds in a few days / next week.
    If you need an immediate workaround, a patch would be to add the following line to your bootstrap HTML file (after SmartClient loads)
    Code:
    <script>
    isc.Canvas.addProperties({ notifyAncestorsOnReflow:true });
    </script>
    However this workaround will be rendered obsolete once the fix makes it into nightly builds.

    Regards
    Isomorphic Software

    Comment


      #3
      The workaround does not seem to help
      Code:
      <SCRIPT type="text/javascript">
      	isc.setAutoDraw(false);
       document.write('<script type="text/javascript" src=' + script_src + '></'script>');
      <isomorphic:loadDS ID="rateaXxxxx,ratexxxx,comxxx,usexxxx"/>
      isc.Canvas.addProperties({ notifyAncestorsOnReflow:true }); 	
      </SCRIPT>
      Last edited by gopalkesavan; 22 Jun 2012, 12:13.

      Comment


        #4
        Strange.
        Well the workaround has made it into nightly builds (in 2.5 and 3.0 branches) so this should be resolved. Please try the latest nightly and let us know if you continue to have this problem.

        Comment

        Working...
        X