Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
190
igGrid render differently in Firefox and IE9
posted

Same grid render differently in 2 browsers:

Firefox

And IE9

What im doing wrong?

Parents
  • 6279
    Suggested Answer
    posted

    Hi,

    First off, this seems like a case that should be handled by our support team so please do so at http://ko.infragistics.com/support/submitrequest.aspx and provide them with a sample where the bug can be reproduced. 

    If I had to guess, I would say that you are not referencing the CSS files of the grid and its features in the correct order (yes, the order of cascading style sheets does matter on any page). Here is the order that works so you can cross-reference it with the one you are using:

    <!--CSS Debug-->
        <link type="text/css" href="http://localhost/ig_ui12.1/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" />
        <link type="text/css" href="http://localhost/ig_ui12.1/css/structure/modules/infragistics.ui.shared.css" rel="stylesheet" /> 
        <link type="text/css" href="http://localhost/ig_ui12.1/css/structure/modules/infragistics.ui.grid.css" rel="stylesheet" /> 
        <link type="text/css" href="http://localhost/ig_ui12.1/css/structure/modules/infragistics.ui.editors.css" rel="stylesheet" />
        <link type="text/css" href="http://localhost/ig_ui12.1/css/structure/modules/infragistics.ui.validator.css" rel="stylesheet" />
        <link type="text/css" href="http://localhost/ig_ui12.1/css/structure/jquery.ui.datepicker.css" rel="stylesheet" />
    

    You can copy-paste the CSS (and JavaScript) file references if you are still experiencing the incorrect rendering.
    (this is not a development issue - I can assure you as I have seen it only on pages that have incorrect CSS  or JavaScript file references) 

Reply Children