Hey!
I saw in jsfiddle that you are mounting the table with while .. I think it's worth changing and letting the bootstra-table mount the table for you, it's simple:
Create a PHP file that returns a json with the table data, and throw the path of that file inside the data-url attribute in the table tag, like this:
> <table id="table-nome"
> data-url="caminho_data.php"
> >
> <thead>
> <tr>
> <th data-field="campo1">Campo 1</th>
> <th data-field="campo 2">Campo 2</th>
> </tr>
> </thead>
> </table>
Then, after saving the information in its modal, in the ajax return, just call:
$("#table-nome").bootstrapTable('refresh');
You can see an example here:
[ link
There are several other examples on this site, take a look, the bootstrap-table has a lot of legal functionality that makes life much easier once you get the hang of it;)
o /
Another solution, GAMBIS in my view, is to play the table in another file and call that file again in the ajax return of the modal action, and replace the current table ...