Same grid render differently in 2 browsers:
FirefoxAnd IE9
What im doing wrong?
If you can share your solution on the forums, please do so.If you cannot (I understand that it may contain some sensitive business logic), then please contact our support team.I'm a forum volunteer and I'm afraid that I cannot provide you with my email for assistance on this case.
What is your email that i can send you source
The CSS references seem fine, but I see that you are using the igLoader as well so I would like to ask you to provide me with a sample MVC project where the problem is reproducible - you can give the grid some dummy data as data itself isn't important to this scenario.Thanks in advance.
Before i have
<
link href="@Url.Content("~/Content/css/themes/infragistics/infragistics.theme.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/css/structure/infragistics.css")" rel="stylesheet" type="text/css" />
Now i add all that you mention, and nothing changed. This is what i got
<link href="@Url.Content("~/Content/css/themes/infragistics/infragistics.theme.css")" rel="stylesheet" type="text/css" />
/>
>
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)