Первая запись в таблице перекрывается заголовком таблицы в IE - PullRequest
0 голосов
/ 06 мая 2009

Создана таблица, которая отлично работает в IE6,7, но в FF заголовок скрывает первый datarow.

<g:if test="${params.history!=null}">
<div style="width:791px;padding-bottom:10px;overflow-y:auto;${(lstDNCallEntries.size()>0)?'height:100px':''}">
<table class="table">
<thead style="position: absolute;">
 <% params=params.findAll{ k,v -> k != 'sort'} %>
<td class="certify_head" width="87" style="text-align: center">title</td>
<td class="certify_head" width="89" style="text-align: center" >action</td>
            <td class="certify_head" width="66" style="text-align: center" >list</td>
            <td class="certify_head" width="118" style="text-align: center" >selection</td>
            <td class="certify_head" width="110" style="text-align: center" >source</td>
            <td class="certify_head" width="64" style="text-align: center" >${message(code:'phoneoptoutgranularity.gsp~title.user')}</td>
            <td class="certify_head" width="82" style="text-align: center" >Office</td>
            <td class="certify_head" width="90" style="text-align: center" >Effective Date</td>
        </thead>
        <tbody class="scrollContent">
            <g:if test="${lstDNCallEntries.size() > 0}">
                <g:each in="${lstDNCallEntries}" var="phoneHistory" status="i">
                    <tr class="${(i % 2) == 0 ? 'normalRow' : 'alternateRow'}"
                            onMouseOver="this.style.backgroundColor='#ffffd9'"
                            onMouseOut="this.style.backgroundColor=''">
                        <td width="90" align="center" valign="center">${phoneHistory.date}</td>
                        <td width="92" valign="center" style="font: normal 12px Arial, Helvetica, sans-serif;">${phoneHistory.action}</td>
                        <td width="71" align="center" valign="center">${phoneHistory.list}</td>
                        <td width="122" align="center" valign="center">${phoneHistory.preferencekey}</td>
                        <td width="110" align="center" valign="center">${phoneHistory.source}</td>
                        <td width="69" align="center" valign="center">${phoneHistory.user}</td>
                        <td width="85" align="center" valign="center">${phoneHistory.office}</td>
                        <td width="90" align="center" valign="center">${phoneHistory.effectiveDate}</td>
                    </tr>
                </g:each>
            </g:if>
            <g:else>
                <tr>
                    <b>
                    <td colspan="7" width="770" align="center"><b><g:message
                        code="phoneoptoutgranularity.gsp~historydetails" /></b></td>
                    </b>
                </tr>
            </g:else>
        </tbody>
    </table>
    </div>
</g:if> 

Пожалуйста, помогите, где я могу изменить.

-ss

Ответы [ 2 ]

0 голосов
/ 06 мая 2009

Почему это position:absolute там? С вершины моей головы pos: abs вытащит thead из потока, который поднимет первый ряд, эффективно скрывая его. Возможно, вы могли бы исправить это с некоторым запасом / отступом в первом ряду, но вы должны были бы сначала оправдать pos: abs.

Другая вещь, которую я вижу, состоит в том, что все содержимое thead td не th, но я сомневаюсь, что это создаст этот эффект.

edit: дал грубый тест, это определенно pos: abs (корень зла: P). Возможно, вы хотите position:fixed вместо этого? А другой постер прав, вам не хватает tr

0 голосов
/ 06 мая 2009

Похоже, вам не хватает <tr> в вашем верхнем ряду.

...