【问题标题】:Add a row to change headers of table column and add row on top of header using jQuery添加一行以更改表列的标题并使用 jQuery 在标题顶部添加行
【发布时间】:2013-02-12 00:36:09
【问题描述】:

我有下表。

我想从列标题中删除城市名称并将其放在顶部。如下:

带有城市名称的列是在代码中动态添加的,可以是任意数字,即 0、1 到任意数字。

表结构为:

<table class="gvv1" cellspacing="0" rules="all" border="1" id="MainContent_gvActivities"
style="border-collapse: collapse;">
<tr style="background-color: buttonface;">
    <th scope="col">
        &nbsp;
    </th>
    <th scope="col">
        Cluster
    </th>
    <th scope="col">
        Activity
    </th>
    <th scope="col">
        Data
    </th>
    <th scope="col">
        <b>London_Tasks</b>
    </th>
    <th scope="col">
        <b>London_Achieved</b>
    </th>
    <th scope="col">
        <b>Geneva_Tasks</b>
    </th>
    <th scope="col">
        <b>Geneva_Achieved</b>
    </th>
</tr>
<tr>
    <td>
        <input id="chkSelected_0" type="checkbox" />
    </td>
    <td style="width: 50px; white-space: nowrap;">
        ER.
    </td>
    <td style="width: 50px; white-space: nowrap;">
        Provision
    </td>
    <td style="width: 60px; white-space: nowrap;">
        number
    </td>
    <td>
        <input name="ctl00Activitiesl00" type="text" value="-1.00" />
    </td>
    <td>
        <input name="ctl00Activitiesl01" type="text" value="-1.00" />
    </td>
    <td>
        <input name="ctl00Activitiesl02" type="text" value="-1.00" />
    </td>
    <td>
        <input name="ctl00Activitiesl03" type="text" value="-1.00" />
    </td>
</tr>
<tr>
    <td>
        <input id="chkSelected_1" type="checkbox" />
    </td>
    <td style="width: 50px; white-space: nowrap;">
        ER.
    </td>
    <td style="width: 50px; white-space: nowrap;">
        support
    </td>
    <td style="width: 60px; white-space: nowrap;">
        campaign (Numbers)
    </td>
    <td>
        <input name="ctl0Activities200" type="text" value="-1.00" />
    </td>
    <td>
        <input name="ctl0Activities201" type="text" value="-1.00" />
    </td>
    <td>
        <input name="ctl0Activities202" type="text" value="-1.00" />
    </td>
    <td>
        <input name="ctl0Activities203" type="text" value="-1.00" />
    </td>
</tr>      
</table>

【问题讨论】:

  • 你会尝试一些东西的。请发布该代码。
  • @techfoobar 我可以在 tr:first 中使用 grid 和 before 添加行,但这些列是动态的,可以是 1 或 5 或 10。而且我无法从列标题中删除文本和放在上面。

标签: javascript jquery gridview


【解决方案1】:

首先,一个 jsFiddle:http://jsfiddle.net/52jZC/

这使用 jQuery 并且将动态地处理任何具有相同结构且类名为 gvv1 的表。您可以根据需要进行更改:

<script>
// This function was taking from here: http://stackoverflow.com/questions/2815683/jquery-javascript-replace-tag-type
(function($) {    
        $.fn.replaceTagName = function(replaceWith) {
                var tags = [],
                        i    = this.length;
                while (i--) {
                        var newElement = document.createElement(replaceWith),
                                thisi      = this[i],
                                thisia     = thisi.attributes;
                        for (var a = thisia.length - 1; a >= 0; a--) {
                                var attrib = thisia[a];
                                newElement.setAttribute(attrib.name, attrib.value);
                        };
                        newElement.innerHTML = thisi.innerHTML;
                        $(thisi).after(newElement).remove();
                        tags[i - 1] = newElement;
                }
                return $(tags);
        };
})(window.jQuery);

$(function() {
        // This formats each table w/ the class 'gvv1' as specified in your question
            $('.gvv1').each(function(i, v) {
            city1 = $(this).find('th:eq(4)').text().split('_');
            city1 = city1[0];
            var city2 = $(this).find('th:eq(6)').text().split('_');
            city2 = city2[0];
            $(this).find('th:eq(4)').text('Tasks');
            $(this).find('th:eq(5)').text('Achieved');
            $(this).find('th:eq(6)').text('Tasks');
            $(this).find('th:eq(7)').text('Achieved');

            $(this).find('th').replaceTagName('td');

            $(this).prepend('<thead><tr><th colspan="4">&nbsp;</th><th colspan="2">' + city1 + '</th><th colspan="2">' + city2 + '</th></tr></thead>');

        });
});

【讨论】:

    【解决方案2】:

    你需要改变

    &lt;th&gt;'s

    到一个

    &lt;td&gt;

    首先为该行指定一个类和样式,使其看起来像您想要的标题

    <tr class="NewClass" style="background-color: buttonface;">
        <td scope="col">
            &nbsp;
        </td>
        <td scope="col">
            Cluster
        </td>
        <td scope="col">
            Activity
        </td>
        <td scope="col">
            Data
        </td>
        <td scope="col">
            <b>London_Tasks</b>
        </td>
        <td scope="col">
            <b>London_Achieved</b>
        </td>
        <td scope="col">
            <b>Geneva_Tasks</b>
        </td>
        <td scope="col">
            <b>Geneva_Achieved</b>
        </td>
    </tr>
    

    当触发更改表的事件时使用.before

    $('TriggerEntity').click(function(){
    
    ('.NewClass').before('<tr><th>&nbsp</th><th>London</th>...');
    
    });
    

    【讨论】:

    • this (London) 只是一个例子,我不知道位置名称和城市名称列可以是任何数字,所以我需要从列标题中提取文本并放入顶栏。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2016-10-14
    • 1970-01-01
    • 1970-01-01
    • 2020-06-06
    • 1970-01-01
    • 1970-01-01
    • 2016-11-13
    相关资源
    最近更新 更多