Odoo KeyError: 'set_scrollTop' 和 'ir.actions.do_nothing'

问题描述

这些类型不能在odoo 14中使用吗?

const add_tooltip = function (context) {
    let row_names = [],column_names = [];

    context.find("th").each(function () {
        $(this).attr("title",$(this).text());

        if ($(this).parents("thead").length)
            column_names.push($(this).text());
        else
            row_names.push($(this).text());
    });

    context.find("tbody,tfoot").find("tr").each(function (i) {
        $(this).find("td").each(function (j) {
            $(this).attr("title",`${row_names[i]},${column_names[j + 1]}`);
        });
    });
};

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)