I would Like to add Two columns Add and Delete , I have around 45Thousand Records , So Is there any alternative other than looping through data and adding the column to json data??
Can I add Statically like below ???
$(“#jqxgrid”).jqxGrid(
columns: [
{ text: ‘Add’, cellsrenderer: linkrenderer },
{ text: ‘Delete’, cellsrenderer: linkrenderer },
// Other Columns
]
});
I have written like this to add statically and In linkReneder Function I can get Value from data that is binded using Row number…. but in grid display
I can only see column header but not rows with columns (Add,Delete )..blank fields in those columns .. How can I get link buttons (Add) like in those column cells ??