Results 1 to 2 of 2

Thread: jQuery - SlickGrid - sometime my customer gets this message

  1. #1

    Thread Starter
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    jQuery - SlickGrid - sometime my customer gets this message

    The attached screen shot shows an error message that sometimes appear for one of my customers. If they immediately try again to open this "grid" it works - so it's a sporadic problem.

    And I've never gotten it myself - nor have dozens of others users...

    I searched in the slick.grid.js source and found this code

    Code:
                if ($style[0].styleSheet) { // IE
                    $style[0].styleSheet.cssText = rules.join("");
                }
                else {
                    $style[0].appendChild(document.createTextNode(rules.join(" ")));
                }
    
                var sheets = document.styleSheets;
                for (var i = 0; i < sheets.length; i++) {
                    if ((sheets[i].ownerNode || sheets[i].owningElement) == $style[0]) {
                        stylesheet = sheets[i];
                        break;
                    }
                }
    Which I am not in control of...

    And they are using Firefox
    Attached Images Attached Images  

    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

  2. #2
    Frenzied Member tr333's Avatar
    Join Date
    Nov 2004
    Location
    /dev/st0
    Posts
    1,605

    Re: jQuery - SlickGrid - sometime my customer gets this message

    Have you tried reporting this bug to the slickgrid developers? Running the js through the browser debugging tools with breakpoints should help out in determining what conditions are causing the problem. Since you have full access to the non-minified js source, this shouldn't be "too" hard (i hope).
    CSS layout comes in to the 21st century with flexbox!
    Just another Perl hacker,

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width