如何避免使用列的带有交叉标记错误的红色框

发布于 2025-01-22 18:48:09 字数 282 浏览 2 评论 0原文

我有一个交互式网格,其中列是根据另一列条件阅读的列,所有这些都可以正常工作

。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。要删除该 “在此处输入图像描述”

I have a interactive grid, where the columns are readonly according to another column condition which and all is working fine..

Whats issue here for me is : there is an redbox with cross mark is showing when page loads for the column readonly.. how to remove that enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

厌味 2025-01-29 18:48:09

将此CSS规则添加到您页面的内联CSS部分:

.a-GV-cell.is-error:not(.is-active)::before {
  display: none;
}
.a-GV-cell u-tS is-error{
  color: white !important;
}

这将阻止在该页面上显示所有错误图标。

Add this css rule to your page's inline CSS part:

.a-GV-cell.is-error:not(.is-active)::before {
  display: none;
}
.a-GV-cell u-tS is-error{
  color: white !important;
}

This will prevent displaying all of that error icons on that page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文