API
Component

Checkbox ($UI/comp/antd/components/Checkbox/Checkbox)

使用范围:WX

Contents

component Checkbox ($UI/comp/antd/components/Checkbox/Checkbox) extends AntdComponent

多选框

<b>使用场景</b>:用来表示两种状态之间的切换。 <b>使用方法</b>:绑定数据列、设置选中后的状态值进行使用。

Constructor Top

  Checkbox ()

Static Properties & Enumerations Top

String EVENT_VALUE_CHANGE = "valuechange"

值改变事件

Events Top

void valuechange (ValueChangeEvent event)

Constructor details Top

public Checkbox ()

多选框

<b>使用场景</b>:用来表示两种状态之间的切换。 <b>使用方法</b>:绑定数据列、设置选中后的状态值进行使用。

Static Properties & Enumerations Detail Top

static public String EVENT_VALUE_CHANGE = "valuechange"

值改变事件

Events Detail Top

public void valuechange (ValueChangeEvent event)

值改变

Parameters

ValueChangeEvent event


结构如下:

{ value : 新值, oldValue : 旧值, source : 组件自身 }

Return Value

void