datagrid telerik中的选中列

时间:2019-01-29 11:28:08

标签: datagrid telerik

我在telerik datagrid中的复选框有问题, 我想根据其他字段的值`

选中该复选框
enter columns: [


        //define template column with checkbox and attach click event handler
        {
          title: 'Active', 
          headerTemplate: `<input type="checkbox" id="header-chb" class="k-checkbox">
<label class="k-checkbox-label" for="header-chb"> Active </label>`,

          template: 

          function(dataItem){
          <?php
          $lof = 1; // I want this value based on XOK Field
          if($lof==0){$sd = "checked";} else { $sd ="";}?>
          return `
          <input type="checkbox" id="${dataItem.TestNum}" class="k-checkbox" <?php echo $sd ?>>
<label class="k-checkbox-label" for="${dataItem.TestNum}"></label>`},width: 380,
          locked: true
        },
         {
          field:"XOK",
          width: 20,
          title: "TestCode"
        },

如果XOK值为1,如何检查该复选框,如果该值为0,则不选中该复选框。如果可能,我想隐藏/删除XOK列。谢谢大家的帮助,

1 个答案:

答案 0 :(得分:0)

谢谢,我刚刚找到了答案,方法是删除php并替换为 var semuanya = dataItem.XOK;