Hi, i need to include a checkbox in a column of JQXGrid. For the visualization and the edit all is perfect but for the new row inline in my column i want the checkbox. I have done this for the dropdownlist but i don’t know how to do for checkbox.
Actually the column is:
{
text: 'Att', datafield: 'Status', width: '2%', columntype: 'checkbox', filtertype: 'bool',
createEverPresentRowWidget: function (datafield, htmlElement, popup, addCallback) {
inputTag.jqxCheckBox();
return inputTag;
},
rendered: function (element) {
$(element).jqxTooltip({ position: 'mouse', content: "Attivo" });
}
},