X可编辑清单:我是否可以根据表格的行/单元格数据预先选中一个复选框

时间:2019-01-08 14:43:07

标签: vue.js x-editable checklistbox

我正在使用X可编辑清单。我在checkList中只有一个复选框。但我希望根据行/单元格中的数据对其进行预检查。我没有任何解决方案。请帮助

self.oTable.$('td:eq(27)',row).editable({
                  mode: "inline",
                  showbuttons: false,
                  onblur: "submit",
                  // value:  "Yes", /*un-commenting this will check all the 
                                              checkboxes in that column*/
                  source: ['Yes'],
                  type: 'checklist',
                  unsavedclass: null,
                  semd: "never",
                  "success": function(response, newValue) {
                    // some code
                  },
                  "display": function (value) {
                    if(value !== undefined && value !== null){
                      if(value.length >0){
                        $(this).html('<input type="checkbox" checked 
                                                                  disabled>');
                      } else {
                        $(this).html('<input type="checkbox" disabled>');
                      }
                    }
                  }

                });

0 个答案:

没有答案