This commit is contained in:
朱子楚\zhuzi
2023-10-01 15:27:38 +08:00
parent 895332f867
commit 68127a7303
4 changed files with 20 additions and 18 deletions

View File

@ -38,8 +38,9 @@ FluContentPage{
checked: true === options.checked
enableAnimation: false
clickListener: function(){
modelData.checkbox = table_view.customItem(com_checbox,{checked:!options.checked})
tableModel.setRow(row,modelData)
var obj = tableModel.getRow(row)
obj.checkbox = table_view.customItem(com_checbox,{checked:!options.checked})
tableModel.setRow(row,obj)
checkBoxChanged()
}
}