We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Grid not displaying properly when deployed

In the development environment with IISExpress it displays perfectly.  What am I missing when I deploy the app?


but when deployed to IIS server it looks like this:


1 Reply

SS Seeni Sakthi Kumar Seeni Raj Syncfusion Team November 9, 2016 01:56 PM UTC

Hi Michael, 

We suspect that you are using bundling concept of the ASP.Net refer the CSS in your application. So we suggest to use the CssRewriteUrlTransform to resolve this issue and when bundling the minified files, EnableOptimizations must be false. Ensure the same in your project. Refer to the following code example. 

    bundles.Add(new StyleBundle("~/Content/ejThemes") 
                .Include("~/Content/ej/web/ej.widgets.core.min.css", new CssRewriteUrlTransform()) 
                    .Include("~/Content/ej/web//Default-theme/ej.theme.min.css", new CssRewriteUrlTransform())); 
            BundleTable.EnableOptimizations = false; 

If you are still facing same difficulty, please share the following details to analyze the problem. 

1)      Code example of BundleConfig 
2)      Code example of _layout.cshml page. 
3)      Stack trace of browser console (if any error) 

Regards, 
Seeni Sakthi Kumar S. 


Loader.
Live Chat Icon For mobile
Up arrow icon