views:

31

answers:

1

dear all... i have a problem, after i'm click button show this alert:

DataTables warning: Unable to re-initialise DataTable. Please use the API to make any configuration changes required.

what the meaning of this alert??what must i do?i want after click button data grid can show data...

A: 
$("#show").click(function(event){
                        if (typeof oTable=='undefined'){
                                oTable = $("#datalist").dataTable({
                                .
                                .
                                .
                                });
                        }else{
                                oTable.fnDraw();
                                }
                     });
klox