SLDS中为什么闪电数据表的状态栏盖住了日期编辑面板?

In SLDS, why the status bar of lightning datatable covers the date edit panel?

当我使用 lightning 内联 editable 数据 table 组件时,状态栏会覆盖编辑面板。

我认为这可能是 SLDS 错误。

我运行也遇到了这个问题。我同意我认为这是 SLDS 方面的 CSS 问题。

我正在使用带内联编辑的 lightning:datatable,我注意到带有 Cancel/Save 按钮的页脚栏 div 使用 'slds-docked-form-footer' class,它将 z-index 设置为 8000。

从日期选择器中爬取,我注意到 "table cell" 包含一个具有内联样式的部分元素,将 z​​-index 设置为 7002。该部分元素还具有 class 的 "slds-popover_edit",所以我的解决方案是将其放入我的闪电组件的 css 文件中:

.THIS section.slds-popover_edit {
    z-index: 9999 !important;
}

希望这对您有所帮助,或者您现在已经找到了更好的解决方案。我将测试我的页面以确保此更改不会产生任何意外后果。