Hi, I have a three jquery tabs, and I created a table in each of them, (I tried to put the same table in each tabs first, since server side team did not finish the action that will provide data for the two other tables) :
http://s30.postimg.org/a1tdqrxv5/code.png
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>List SAI Admin</title> <link rel="stylesheet" href="css/jquery-ui.css">
$(function() { $( "#tabs" ).tabs({ beforeLoad: function( event, ui ) { ui.jqXHR.error(function() { ui.panel.html( "Couldn't load this tab. "); }); } }); });</head> <body>
</body> </html>
The table in the first tab render fine, here is an image : http://s8.postimg.org/5wberrnbp/tab1.png
The tables in the second and the third tabs have problem ( even it's the same table as the first tab), here is an image : http://s28.postimg.org/mpiu17fod/tab2.png
Thanks, your help is appreciated.