jQWidgets jqxDataTable columnGroups 属性
jQWidgets是一个 JavaScript 框架,用于为 PC 和移动设备制作基于 Web 的应用程序。它是一个非常强大、经过优化、独立于平台且得到广泛支持的框架。 jqxDataTable用于读取和显示 HTML 表中的数据。这也用于显示来自各种数据源(如 XML、JSON、Array、CSV 或 TSV)的数据。
列组 属性用于将多个列设置为指定 jqxDataTable 的单个组列。
下面是属性列表。
- parentGroup:这是组合现有列后将形成的最终组名称。
- name:这是将检查组名称的字符串属性。
- 对齐:这是 检查列标题对齐的字符串属性。它的可能值是“左”、“中心”或“右”。
句法:
用于设置columnGroups属性。
$('Selector').jqxDataTable({
columnGroups: [
{ text: 'Product Details', align: 'center',
name: 'ProductDetails'},
{ text: 'Order Details', parentGroup: 'ProductDetails',
align: 'center', name: 'OrderDetails' },
{ text: 'Location', align: 'center', name: 'Location' }
]
});
链接文件:从给定链接下载 jQWidgets。在 HTML 文件中,找到下载文件夹中的脚本文件。
示例:下面的示例说明了 jQWidgets columnGroups属性。
HTML
GeeksforGeeks
jQWidgets jqxDataTable columnGroups Property
Employee_Name
Company
Designation
Rohit
GeeksforGeeks
HR
Rahul
Capgemini
Software Engineer
Vivek
CESC
Electrical Engineer
Amit
Apple
Manager
输出:
参考: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxdatatable/jquery-datatable-api.htm?search=