Hello,
I am seeing an issue with the jqxDataTable. I’ve defined the dataTable as editable, and I also have one column that uses cellsRenderer. When I click into the editable cell, the cell that uses cellsRenderer goes blank. Is this by design? I would prefer that the data remain in tact for display. Here is a simple code snippet to replicate what I am describing:
$("#table").jqxDataTable(
{
editable: true,
selectionMode: 'singleRow',
columns: [
{ text: 'First Name', dataField: 'First Name', width: 200 },
{ text: 'Last Name', dataField: 'Last Name', width: 200 },
{ text: 'Product', dataField: '', width: 250, cellsRenderer: function(row, column, value, rowData){return "renderTest";} }
]
});