No matching records found
No matching records found
syn4k
Posts: 10Questions: 0Answers: 0
The datatable doesn't work with Chrome. It works with all other browsers though...Is this a known issue?
This discussion has been closed.
Replies
I am running the latest version of Chrome, Firefox, IE and Safari. Chrome and Safari exhibit the same basic behavior. That seems very odd to me...considering the two bowsers that don't work are likely the most stable.
Safari screenshot: http://img576.imageshack.us/i/screenshot001q.jpg/
Allan
turns out that the data being returned to the browser was headered as text/xml, so all the test such as
if(element.nodeName == 'TD') failed because of the uppercase for html nodenames, hence the "No matching records found"
what i did was simply replace the uppercases TD, TH, TR in such comparaisons as lowercases td, tr, th and all worked well.
off course until i get my headers right...
hope this helps.
Regards,
Allan