will you plz tell me how to use fnAddData for server side pagination

will you plz tell me how to use fnAddData for server side pagination

SandeepMSandeepM Posts: 28Questions: 0Answers: 0
edited June 2012 in General
I want to do same functionality as fnAddData for Server side pagination to send particular row information on click on that row

Replies

  • allanallan Posts: 63,542Questions: 1Answers: 10,476 Site admin
    The documentation for fnAddData specifically says:

    [quote]
    Please note that this is suitable for client-side processing only - if you are using server-side processing (i.e. "bServerSide": true), then to add data, you must add it to the data source, i.e. the server-side, through an Ajax call.
    [/quote]

    i.e. basically don't use it with server-side processing.

    If you want to add a row to a table that is using server-sid processing you can make an Ajax call to the server which must add the row.

    Allan
  • SandeepMSandeepM Posts: 28Questions: 0Answers: 0
    k and Thanks
This discussion has been closed.