mindmup / editable-table

tiny jQuery/Bootstrap widget that makes a HTML table editable
MIT License
686 stars 324 forks source link

Get Data Out After Editted Table #34

Open nicholasrpb opened 8 years ago

nicholasrpb commented 8 years ago

Hi i have editted table using onPostBody: $('#normal_window_limit_table').bootstrapTable({ data: window, onPostBody: function () { $('#normal_window_limit_table').editableTableWidget({

and i have another click button function to get the data of the table after editted var after_edit= $('#normal_window_limit_table').bootstrapTable('getData', {useCurrentPage: true});

however, the data in after_edit variable still use old data before editted is there a way to get the data as the latest updated from the table?