Hi,
I try to disable the word wrapping in cells, but I can’t solve the problem. Can anybody give me a hint?
Here is my try…
$("#dataTable").jqxDataTable(
{
pagerButtonsCount: 10,
pageSize: 10,
pageable: true,
source: dataAdapter,
autoRowHeight: true,
width: 1000,
height: 375,
columns: [
{ text: 'ID', dataField: 'REC_ID', autoCellHeight : false, hidden: true },
{ text: 'Artikelnummer', dataField: 'ARTNUM', autoCellHeight: false, width: 200 },
{ text: 'Barcode', dataField: 'BARCODE', autoCellHeight: false, width: 200 },
{ text: 'Kurzname', dataField: 'KURZNAME', autoCellHeight: false },
{ text: 'VK3', dataField: 'VK3', autoCellHeight: false, width: 110, cellsAlign: 'right' }
]
});
Best regards
Daniel