📜  jQWidgets jqxListBox disableAt() 方法(1)

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

jQWidgets jqxListBox disableAt() 方法

简介

jQWidgets jqxListBox disableAt() 方法用于禁用指定位置的列表项。

语法

disableAt(index: number):void;

参数

  • index:禁用的列表项的索引位置,从0开始计数。number类型。

返回值

  • 无返回值。

示例代码

//获取列表框控件
let listBox = $("#listbox").jqxListBox({ 
    source: listSource,
    width: 200,
    height: 300,
    theme: 'classic'
});

//禁用列表项
listBox.jqxListBox('disableAt', 2);

效果演示

下面是使用 jQWidgets jqxListBox disableAt() 方法 禁用列表项的示例图:

jqxlistbox-disableAt-demo

注意事项

  • disableAt() 方法只禁用指定位置的列表项,如果需要禁用多个列表项,则需要多次调用该方法。
  • 如果要启用已禁用的列表项,可以使用 enableAt() 方法。
//启用禁用的列表项
listBox.jqxListBox('enableAt', 2);