jquery数据表隐藏列
jquery datatables 插件有办法隐藏(和显示)表列吗?
我弄清楚了如何重新加载表数据:使用 fnClearTable
和 fnAddData
。
但我的问题是,在我的表视图之一(例如隐藏模式)中,我不想显示某些列。
Is there a way with the jquery datatables plugin to hide (and show) a table column?
I figured out how to reload the table data: using fnClearTable
and fnAddData
.
But my issue is that in one of my views for the table (e.g. a hidden mode) I don't want to show certain columns.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(14)
动态隐藏列
前面的答案使用旧版 DataTables 语法。在 v 1.10+ 中,您可以使用 column().visible() :
要隐藏多列,可以使用 columns().visible()使用:
这是一个小提琴演示。
初始化表时隐藏列
要在初始化表时隐藏列,可以使用 列 option:
对于上述方法,您需要为应保持可见且未指定其他列选项的列指定
null
。或者,您可以使用 columnDefs 来定位特定列:Hide columns dynamically
The previous answers are using legacy DataTables syntax. In v 1.10+, you can use column().visible():
To hide multiple columns, columns().visible() can be used:
Here is a Fiddle Demo.
Hide columns when the table is initialized
To hide columns when the table is initialized, you can use the columns option:
For the above method, you need to specify
null
for columns that should remain visible and have no other column options specified. Or, you can use columnDefs to target a specific column:您可以通过此命令隐藏列:
其中第一个参数是列的索引,第二个参数是可见性。
通过:http://www.datatables.net/api - 函数fnSetColumnVis
You can hide columns by this command:
Where first parameter is index of column and second parameter is visibility.
Via: http://www.datatables.net/api - function fnSetColumnVis
如果有人再次进入这里,这对我有用......
if anyone gets in here again this worked for me...
您可以在数据表初始化期间定义它
You can define this during datatable initialization
对于任何使用服务器端处理并使用隐藏列将数据库值传递到 jQuery 的人,我建议使用“sClass”参数。您将能够使用 css display: none 隐藏该列,同时仍然能够检索其值。
css:
在数据表 init 中:
//编辑:记得将隐藏类也添加到 thead 单元格中
For anyone using server-side processing and passing database values into jQuery using a hidden column, I suggest "sClass" param. You'll be able to use css display: none to hide the column while still being able to retrieve its value.
css:
In datatables init:
//EDIT: remember to add your hidden class to your thead cell also
通过 API,您可以使用
查看此信息:
在此处输入链接说明
With the api you can use
Look this info:
enter link description here
如果使用 json 中的数据并使用 Datatable v 1.10.19,您可以执行以下操作:
更多信息
If use data from json and use Datatable v 1.10.19, you can do this:
More info
Target 属性定义列的位置。Visible 属性负责列的可见性。Searchable 属性负责搜索功能。如果设置为 false,则该列无法进行搜索。
Target attribute defines the position of the column.Visible attribute responsible for visibility of the column.Searchable attribute responsible for searching facility.If it set to false that column doesn't function with searching.
您可以尝试如下来动态隐藏/显示运行时
隐藏:
fnSetColumnVis( 1, 假, 假 );
示例: oTable.fnSetColumnVis(item, false,false);
显示:
fnSetColumnVis( 1, true, false );
示例: oTable.fnSetColumnVis(item, false,false);
这里,oTable是Datatable的对象。
You can try as below to hide/show dynamically runtime
Hide :
fnSetColumnVis( 1, false, false );
Example: oTable.fnSetColumnVis(item, false,false);
Show :
fnSetColumnVis( 1, true, false );
Example: oTable.fnSetColumnVis(item, false,false);
Here, oTable is object of Datatable.
注意:接受的解决方案现已过时,并且是遗留代码的一部分。 http://legacy.datatables.net/ref
这些解决方案可能不适合那些使用较新版本的 DataTables 的人(现在是旧版本)
对于较新的解决方案:
你可以使用:
https://datatables.net/reference/api/columns().visible( )
您可以实现按钮的替代方案: https://datatables.net/extensions/按钮/内置
查看提供的链接下的最后一个选项,该选项允许有一个可以切换列可见性的按钮。
Note: the accepted solution is now outdated and part of legacy code. http://legacy.datatables.net/ref
The solutions might not be appropriate for those working with the newer versions of DataTables (its legacy now)
For the newer solution:
you could use:
https://datatables.net/reference/api/columns().visible()
alternatives you could implement a button: https://datatables.net/extensions/buttons/built-in
look at the last option under the link provided that allows having a button that could toggle column visibility.
希望这会对您有所帮助。
我正在使用此解决方案在某些列上进行搜索,但我不想在前端显示它们。
Hope this will help you.
I am using this solution for Search on some columns but i don't want to display them on frontend.
对于自动目标始终错误样式
数据表 Codeigniter 4
For automatically target always error style
datatables codeigniter 4
看看我的解决方案
我有这个 HTML
table Head
和我的
Ajax 请求
返回类似这样的内容所以我想隐藏 ID 索引 [0 ] 和 RegistrationStatusId 索引 [5]
我希望这对您有帮助
take look at my solution
I have this HTML
table Head
and my
Ajax request
returned something like thisso I want to hide Id index [0] and RegistrationStatusId index [5]
I hope this would help you