Hi Team,
We are using Infragistics Net advantage Version 13.2.20132.1003.
We have used WebDataGrid in our application. Grid was looking good in IE8 when run locally and also after deploying to the Windows 2008 server.
The issue with IE11 is that, the application works good when run locally, But when deployed on the server, black grid lines appears for every row and columns in the grid.
Please help in this regard.
PFB the link to access the screenshot
Hello Sudheendra,
Thank you for posting on our forums. I will be happy to assist you.
Please note, I am unable to view the screenshot you provided onto this forum thread. May I ask if you can attach deployed and non-deployed screenshots using the "OPTIONS" tab when writing a post?
I am looking forward to your update
Hi Jose,
Sorry for missing the image.
I have attached the screenshot now. Please take a look at it.
Thanks,
Sudheendra
Thank you for the update.
I followed the steps you suggested and was unable to reproduce the behavior you're describing. I have added a WebDataGrid onto a WebForm and bound it to data. Once complete, I compared the rendered output between running the web application as deployed in IIS and in Visual Studio and saw no difference.
I believe the issue may come from the ig_res files that you added to your server after you deployed your web application. Please ensure these files are a copy of the files used when running the application inside of Visual Studio.
I have attached the sample project I used to test this. Please test this project on your PC; whether or not it works correctly may help indicate the nature of this problem.
If the project does not work correctly, this indicates either a problem possibly specific to your environment, or a difference in the DLL versions we are using. My test was performed using version 13.2.20132.1003 in Infragistics 2013 Volume 2
If the project does show the product feature working correctly, this indicates a possible problem in the code of your application. It will help if you can provide a small, isolated sample application that demonstrates the behavior you are seeing.
Or, if this sample project is not an accurate demonstration of what you're trying to do, please feel free to modify it and send it back, or send a small sample project of your own if you have one.
Please let me know if I can provide any further assistance.
I ran the sample code locally, deployed on the win server 2008 and copied the ig_res folder which was being used in my code. I couldn't reproduce the issue.
However, the issue with my code still exists !! I deployed the code on my local IIS and tried accessing it by http://localhost:8001/. Issue didn't occur. When i accessed the page using the machine name like http://mymachinename:8001/, the issue occurs. This behavior is not seen in the sample code.
Let me take a look that which part of my code is making the difference.
Thanks
I look forward to hearing the outcome of your investigation.
I couldn't find the root cause of the issue. However, i did a temporary fix for the above issue by including the below css class in my master page (to override the css of ig_res).
.igg_Control table
{
border-collapse:collapse !important;
}
tbody.igg_Item>tr>td
border-left:0px solid #ffffff;
border-right:0px solid #ffffff;
border-bottom:0px solid #ffffff;
With the above change, my application is working good :)
Thanks for all your support !