Hi,
I have a somewhat strange bug where some inline-css seems to be missing. This occurs in IE10 and IE11 and only when the site is hosted in IIS (IIS Express 8 works fine).
This is the generated html from IE11, site hosted in IIS:
And this is the generated html from IE1,1 site hosted in IIS Express:
As you can see, in the first case the width: 100% attribute is missing, but therefore there is an attribute "-ms-text-overflow". Because the width attribute is missing, the layout i screwed up. The software is absolute identical, the Telerik Version is Q3 2014. In both cases IE runs in edge mode.
If I try the same with Chrome, in both cases the width attribute is set correctly.
Could you tell me which logic in the RadGrid determines which attributes must be set?
Thanks!
I have a somewhat strange bug where some inline-css seems to be missing. This occurs in IE10 and IE11 and only when the site is hosted in IIS (IIS Express 8 works fine).
This is the generated html from IE11, site hosted in IIS:
<div class="rgHeaderWrapper"> <div class="rgHeaderDiv" id="Control1_SP_Grid1_Grid1_Grid_GridHeader" style="overflow: hidden; margin-right: 17px;"> <table class="rgMasterTable rgClipCells rgClipCells" id="Control1_SP_Grid1_Grid1_Grid_ctl00_Header" style="overflow: hidden; table-layout: fixed; -ms-text-overflow: ellipsis; empty-cells: show;" cellspacing="0"> And this is the generated html from IE1,1 site hosted in IIS Express:
<div class="rgHeaderWrapper"> <div class="rgHeaderDiv" id="Control1_SP_Grid1_Grid1_Grid_GridHeader" style="overflow: hidden; margin-right: 17px;"> <table class="rgMasterTable rgClipCells rgClipCells" id="Control1_SP_Grid1_Grid1_Grid_ctl00_Header" style="width: 100%; overflow: hidden; table-layout: fixed; empty-cells: show;"> As you can see, in the first case the width: 100% attribute is missing, but therefore there is an attribute "-ms-text-overflow". Because the width attribute is missing, the layout i screwed up. The software is absolute identical, the Telerik Version is Q3 2014. In both cases IE runs in edge mode.
If I try the same with Chrome, in both cases the width attribute is set correctly.
Could you tell me which logic in the RadGrid determines which attributes must be set?
Thanks!