Broblem with ajax data
Broblem with ajax data
I try to load data using ajax. I have next data generated by server side:
{"sEcho": 1, "iTotalRecords": 8, "iTotalDisplayRecords": 8, "aaData": [ ["1", "news", "The mouse doesn\"t work in windowed FAR."],["2", "news", "Does not work with cyrillic file names on Novell."],["3", "news", "This is the bug in the Novell Client on Windows."],["4", "news", "Open the Control Panel and load the Regional and Language Options."],["5", "news", "You need to refresh the plugins\' cache. Just run the supplied."],["6", "news", "Performance Counters are missing."],["7", "news", "But this feature is correctly supported by only."],["8", "promo", "Using Del in this dialog you can unmap"]] }
Problem was in this words: doesn\"t, plugins\' but why? All needed symbols are normally quoted. What is problem? If I remove all quotes in this case all works fine.
{"sEcho": 1, "iTotalRecords": 8, "iTotalDisplayRecords": 8, "aaData": [ ["1", "news", "The mouse doesn\"t work in windowed FAR."],["2", "news", "Does not work with cyrillic file names on Novell."],["3", "news", "This is the bug in the Novell Client on Windows."],["4", "news", "Open the Control Panel and load the Regional and Language Options."],["5", "news", "You need to refresh the plugins\' cache. Just run the supplied."],["6", "news", "Performance Counters are missing."],["7", "news", "But this feature is correctly supported by only."],["8", "promo", "Using Del in this dialog you can unmap"]] }
Problem was in this words: doesn\"t, plugins\' but why? All needed symbols are normally quoted. What is problem? If I remove all quotes in this case all works fine.
This discussion has been closed.
Replies
Allan
Allan