在Web应用程序中使用Kendo UI开关

时间:2014-07-28 16:28:55

标签: kendo-ui kendo-mobile

我正在尝试使用Kendo移动小部件 - 在我的网络应用程序中切换如下:

enter image description here

<input id="btnConvert" type="checkbox" onclick="onChange();" />

 $(document).ready()
    {        
        $("#btnConvert").kendoMobileSwitch({
            onLabel: "UK",
            offLabel: "US"
        });        
    }
    function onChange(e) {
        alert(e.checked);//true of false
    }

但它没有触发click事件。我尝试了无法正常工作的onchange事件。

我也试过

    $('input:checkbox').change(function () {
}

但没有成功......

1 个答案:

答案 0 :(得分:6)

change定义中定义switch处理程序事件。

$("#btnConvert").kendoMobileSwitch({
    onLabel: "UK",
    offLabel: "US",
    change : function (e) {
        alert("You changed the value");
    }
}); 

请参阅文档here