hi Dimitar,
Sorry yaar. i tried lot but not getting output. I dont know anything about jquery and javascript.
I am just doing copy and paste from examples.
{ text: 'Status', datafield: 'status', filtertype: 'checkedlist', width: "20%",
cellsrenderer: function (row, column, value) {
if(value==true){
return "Active";
}
else{
return "Inactive";
}
},
createeditor: function (row, cellvalue, editor, cellText, width, height) {
element.jqxCheckBox({checked: cellvalue});
},
initeditor: function (row, cellvalue, editor, celltext) {
element.jqxCheckBox({ checked: cellvalue});
},
geteditorvalue: function (row, cellvalue, editor) {
return editor.val();
}
},