var optionspanel = $('#dataFormMasterBitFlag').data("infooptions").panel;$(":radio,:checkbox", optionspanel).click(function () {alert($(this).is(":checked"));});
範例中dataFormMasterBitFlag是元件id,alert的內容是true/false
如果是editor是Checkbox的話,請使用如下方法:
$('#dataFormMasterBitFlag').click(function () {alert($(this).is(":checked"));});
可以寫在form的onloadsuccess。