1

我有一些数据属性放入表格行标签中。当我将表设置为 wijgrid 时,数据属性被破坏。

如何防止 wijmo 破坏这些属性?

4

1 回答 1

1

在行 ( tr) 上应用属性时,插件会简单地忽略它们(如您所见),无论它们是什么(样式、类、数据......)。

这似乎是自愿的,因为通常提取行属性的代码在插件源代码中已注释

在方法readTableSection中,我们有(我在这里删除了不相关的代码行):

readTableSection: function(table, section, readAttributes) {

    ...

    if (table && (section = this.getTableSection(table, section))) {

        for (ri = 0, rowLen = section.rows.length; ri < rowLen; ri++) {

            row = section.rows[ri];
            tmp = [];

            if (readAttributes) {

                // here normally the html attributes of the rows (<tr>) should be extracted
                // but the code is commented !
                tmp.rowAttributes = null; // $.wijmo.wijgrid.getAttributes(row);
                tmp.cellsAttributes = [];

            }

            // here is extracted the html attributes for the cells (<td>)
            for (ci = 0, celLen = row.cells.length; ci < celLen; ci++) {
                tmp[ci] = row.cells[ci].innerHTML;
                if (readAttributes) {
                    tmp.cellsAttributes[ci] = $.wijmo.wijgrid.getAttributes(row.cells[ci], prevent);
                }
            }

            result[ri] = tmp;
        }
    }

    return result;
}

我已经用元素上的“data-”属性进行了测试,td它们没有被破坏。

注意:您必须使用选项readAttributesFromData.

您可以联系开发此插件的公司,询问他们为什么注释掉此行。

于 2012-01-05T10:20:24.023 回答