Popover组件隐藏在聚合物中铁数据表的表格单元格后面

时间:2017-04-30 18:01:10

标签: polymer z-index iron-data-table

2 个答案:

答案 0 :(得分:1)

好吧,坏消息是iron-list问题(即iron-list使用z-translation)。

好消息是,有一种解决方法......我遇到了同样的问题,我最终得到的是一种行为(但你可以把它放在你的组件中),其中包括:

tableListOverflowVisible: function (...tables) {
        tables.forEach((id) => {
          if (typeof id !== 'string') {
            return;
          }

          const table = this.$[id];

          if (!table) {
            return;
          }

          Polymer
            .dom(table)
            .node.querySelector('iron-list')
            .setAttribute('style', 'overflow: visible !important;');
        });
      },

只需将你的表ID传递给那里就可以完成这项工作......

答案 1 :(得分:0)

如果您的z-index设置正确,请检查背景颜色,它可以设置为透明。