Results 1 to 2 of 2

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

Threaded View

  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

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