📜  jQWidgets jqxTreeGrid clearSelection() 方法(1)

📅  最后修改于: 2023-12-03 14:43:27.958000             🧑  作者: Mango

jQWidgets jqxTreeGrid clearSelection() 方法

简介

jQWidgets是一套基于jQuery和Angular的前端UI框架,其包含许多UI组件,其中包括jqxTreeGrid组件。jqxTreeGrid是一种分级表格控件,可以用于显示分层数据。clearSelection()方法是jqxTreeGrid的一个方法,可以用于清除当前所有选中的行。

语法
$("#jqxTreeGrid").jqxTreeGrid("clearSelection");
参数

该方法没有参数。

返回值

该方法没有返回值。

示例代码
$("#jqxTreeGrid").jqxTreeGrid({
  width: "100%",
  source: dataAdapter,
  selectionMode: "singleRow",
  columns: [
    { text: "ID", dataField: "id", width: "10%" },
    { text: "姓名", dataField: "name", width: "20%" },
    { text: "年龄", dataField: "age", width: "10%" },
    { text: "性别", dataField: "sex", width: "10%" },
    { text: "地址", dataField: "address", width: "40%" },
  ],
});

// 清除选中行
$("#clearSelectionBtn").click(function () {
  $("#jqxTreeGrid").jqxTreeGrid("clearSelection");
});
注意事项
  1. 该方法只能清除当前选中的行,不能选中指定行。
  2. 该方法只能应用于jqxTreeGrid,不能应用于其他jqx组件。