I’m fairly new to ExtJS. I adopted some examples and added the functionality to add tabs to a tab-control by clicking on some link. so far so good. Now I want to load a ExtJS table into on of the new tabs. the items (rows, columns) are defined in a database on the server side. Can you give me some hints how to add the table automatically when the tab is created?
Share
Autoload is good for pulling an HTML table from your server-side code. Does this data ever get updated? If so you will need to reload the entire HTML. I would suggest using a grid instead:
There are a ton of options for grids, but the above example shows an automatically updating grid via callbacks.