I replaced 1.9.4 with 1.10.4, made few changes such as replaced fnRender with mRender. The issue I have is the data disapper when I click the header, any thoughts???
Allan, Thanks for your quick response. I am working on test page link, will send you as soon as its ready. Meanwhile, I have attached the code below. Datatable is populating from JSON object, datatable loads fine with data, but when I click any header the data disappear in 1.10.4. I dont see this issue in 1.9.4. Can you please take a look at the code?
/**
*
* @return
*/
function drawResearchOpTable(){
opinionList;
var gppData = [];
var iDataRow = 0;
$.each(opinionList, function(i, obj) {
gppData.push([obj.companyName,
obj.symbol,
obj.opinionRating,
obj.suitability,
obj.sector,
obj.subsector,
obj.vendorRating,
obj.updateDate,
obj.yield,
obj.divRating,
]);
});
I have added few lines, magically it started working. Thanks much Allan.
searching: false,
ordering: true,
paging: false,
processing: true,
deferRender: true,
Answers
As noted in the forum rules, please link to a test page so we can see and debug the issue.
Allan
Allan, Thanks for your quick response. I am working on test page link, will send you as soon as its ready. Meanwhile, I have attached the code below. Datatable is populating from JSON object, datatable loads fine with data, but when I click any header the data disappear in 1.10.4. I dont see this issue in 1.9.4. Can you please take a look at the code?
/**
*
* @return
*/
function drawResearchOpTable(){
opinionList;
var gppData = [];
var iDataRow = 0;
$.each(opinionList, function(i, obj) {
gppData.push([obj.companyName,
obj.symbol,
obj.opinionRating,
obj.suitability,
obj.sector,
obj.subsector,
obj.vendorRating,
obj.updateDate,
obj.yield,
obj.divRating,
]);
});
} );
}
I don't see any immediate problems. We would need a test page showing the issue I think.
Allan
Allan,
I have added few lines, magically it started working. Thanks much Allan.
searching: false,
ordering: true,
paging: false,
processing: true,
deferRender: true,