2012-02-14 2 views
0

여기에서 .css와 함께 다음 태그를 사용할 것입니다. ie8 및 mozilla에서 작동하는이 격자보기이지만 ie7에서 applicatin을 실행하면 마지막 행이 horizontal scroll..can에 의해 겹쳐집니다. 내가 gridControl_container에 다음과 같은 스타일을 추가 아래 하나는이 문제Gridview 마지막 행에 ie7 가로 스크롤 막대가 겹쳐졌습니다.

<div class="gridControl_container"> 
<asp:GridView runat="server" CssClass="gridControl" ID="GrdAD" PageSize="10" 
AllowSorting="True" AutoGenerateColumns="False"> 
</asp:GridView> 
</div 
here the css are below 
gridControl_container { 
    border: 1px solid #BBBBBB; 
    clear: both; 
    float: left; 
    max-height: inherit; 
    overflow-x: auto ! important; 
    overflow-y: auto ! important; 
    width: 100%; 
} 
.gridControl { 
    border-right: medium none; 
    margin: 0; 
    padding: 0; 
    width: 100%; 
} 
+0

비슷한 문제로 같은 코드가 (아직 해결되지 않음) : http://code.google.com/p/google-web-toolkit/issues/detail ? id = 7131 –

답변

0

나에게 sollution을 제공합니다. 지금은 ie7에서 잘 작동합니다. 여기

#padding-bottom:19px;

마지막으로

.gridControl_container { 
    border: 1px solid #BBBBBB; 
    clear: both; 
    float: left; 

    overflow-x: auto ! important; 
    overflow-y: hidden ! important; 
    width: 100%; 
     #padding-bottom:19px; 

} 
관련 문제