I have a Tab system like below:
$( "#tabs" ).tabs({
beforeLoad: function( event, ui ) {
ui.jqXHR.error(function() {
ui.panel.html(
"Couldn't load this tab. We'll try to fix this as soon as possible.");
});
}
});
Now inside the first Tab, i have a link names view Data. Open Clicking want that it should open in the Same Tab from were it is clicked and show the data in tabular format. and in that page [Add Data] link will be there, which will just open the add action within the same Tab
how this is possible.
Also while viewing i want to use pagination so it loads data within the same and navigate back and forth
Please guide
I would do it like the following:
Open in new window
Your php page is making a query of your database and would echo the html already in the table structure.