reloading datatable

reloading datatable

anilvjavaanilvjava Posts: 2Questions: 0Answers: 0
edited November 2011 in DataTables 1.8
Hi Folks,

I have a datatable and when I click on row in datatable it will open jquery dialog and on close of dialog window, I need to refresh the datatable not the entire page. Can anybody pls let me know how can I reload the datatable.

my datatable code is like :

oTable = $('#activeRequests').dataTable({
"bProcessing": true,
"bRetrieve": true,
"bServerSide": false});
my jsp is :

all columns are here
here I'm using jstl and iterating the list to get data from spring action
its like :

Replies

  • fbasfbas Posts: 1,094Questions: 4Answers: 0
    If you were using ajax source or server side processing, you could.

    if you're building a static html-sourced datatable, but best you could do is to have the datatable in an iframe and only reload the frame.
  • anilvjavaanilvjava Posts: 2Questions: 0Answers: 0
    I can use ajax source , but at that case after all data rendered into datatable, use will click on any of the rows in the table and I need to pass that particular row id and column value to the serverside processing. how to retrieve that?
This discussion has been closed.