📅  最后修改于: 2023-12-03 15:02:17.890000             🧑  作者: Mango
showToolbar
是 jQWidgets jqxDataTable 控件的一个属性,用于控制是否显示表格的工具栏。工具栏可以包含创建、编辑、删除等操作的按钮,方便用户对数据进行操作。
在使用 jQWidgets jqxDataTable 控件时,可以通过设置 showToolbar
属性来控制是否显示工具栏。默认情况下,showToolbar
属性为 false
,不显示工具栏。
$("#dataTable").jqxDataTable({
source: dataAdapter,
showToolbar: true,
toolbarHeight: 40,
columns: [
{ text: "ID", dataField: "id" },
{ text: "Name", dataField: "name" },
{ text: "Age", dataField: "age" }
]
});
在上面的示例中,将 showToolbar
属性设置为 true
,表示要显示工具栏。另外也设置了 toolbarHeight
属性来控制工具栏的高度。columns
属性则设置了表格的列信息。
当 showToolbar
属性为 true
时,表格将会显示默认的工具栏按钮。可以通过设置 toolbarButtons
属性来自定义工具栏按钮。
$("#dataTable").jqxDataTable({
source: dataAdapter,
showToolbar: true,
toolbarHeight: 40,
toolbarButtons: [
{
command: "create",
text: "添加",
iconClass: "icon-create"
},
{
command: "edit",
text: "编辑",
iconClass: "icon-edit"
},
{
command: "delete",
text: "删除",
iconClass: "icon-delete"
}
],
columns: [
{ text: "ID", dataField: "id" },
{ text: "Name", dataField: "name" },
{ text: "Age", dataField: "age" }
]
});
在上面的示例中,通过设置 toolbarButtons
属性来自定义工具栏按钮。每个按钮都有 command
、text
和 iconClass
三个属性。其中 command
属性指定按钮的命令,如 create
表示创建记录,edit
表示编辑记录,delete
表示删除记录。text
属性指定按钮显示的文本,iconClass
属性指定按钮显示的图标。
showToolbar
属性是 jQWidgets jqxDataTable 控件的一个重要属性,它可以控制表格是否显示工具栏。通过设置 toolbarButtons
属性,可以自定义工具栏按钮,为用户提供更方便的数据操作方式。