ag-grid - 无法摆脱列侧栏

发布于 2025-01-11 11:14:39 字数 210 浏览 1 评论 0原文

我正在尝试删除 ag-grid 中的列侧栏,这样做:

<bi-grid id="entitySelectGrid" sideBar="false" [rowData]="(rowData$ | async)">

bi-grid 是我公司使用 ag-grid 的网格,顺便说一句。

但它仍然存在。如何彻底删除侧边栏?

I am trying to remove the Columns side bar in ag-grid doing this:

<bi-grid id="entitySelectGrid" sideBar="false" [rowData]="(rowData$ | async)">

bi-grid is my companies grid that uses ag-grid, btw.

But it is still there. How do I remove the side bar completely?

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

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

发布评论

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

评论(1

凉风有信 2025-01-18 11:14:39

html 用于使用网格的页面:

<bi-grid id="entitySelectGrid" [showSideBar]="false" [rowData]="(rowData$ | async)">

.ts 用于网格:

  @Input() showSideBar = true;

html 用于 ag-grid:

[sideBar]="showSideBar"

html for the page that uses the grid:

<bi-grid id="entitySelectGrid" [showSideBar]="false" [rowData]="(rowData$ | async)">

.ts for the grid:

  @Input() showSideBar = true;

html for the ag-grid:

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