bServerSide in IE problem

bServerSide in IE problem

akmalkhonakmalkhon Posts: 15Questions: 0Answers: 0
edited January 2010 in General
Hello. First of all i want to thank you for your efforts. it is so easy to use.
I am newbie I really don't know how php works. I am pulling my hair off.
I want to make a table of 1500 people with their info.
I have done, actually copied from your examples ;), and Everything works perfect. Didn't see anything easier than DataTables among jquery plugins.

My question is:
I want to make "bServerSide: false;" so the data is pulled once from the database, then regular datatables search engine will be used.
but when i make bServerSide: false, explorer doesn't pull any data.

thank you in advance. :)

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,470 Site admin
    Hi akmalkhon,

    You an Ajax data source: http://datatables.net/examples/data_sources/ajax.html .

    One thing to watch out for with IE, is that it can sometimes cache GET requests (IE6 is particularly bad for this). If that is happening, then you might need to upgrade to the 1.6 beta, and use the fnServerData function to make a POST request, rather like this: http://datatables.net/examples/server_side/post.html - just without the server-side option (fnServerData for Ajax get is new in 1.6 - hence the need for the beta).

    Regards,
    Allan
  • akmalkhonakmalkhon Posts: 15Questions: 0Answers: 0
    WOOOOOOW. Did not expect for so quick response. thank you. Datatables rocks. :)
This discussion has been closed.