When click on tab A,show content for tab A,
click on tab B,show content for tab B,and so on.
What's the most simple and compatible way of constructing this html snippet?
Sorry to update late,but I don't mean to use any libs here,so none of jQuery or any other libs.
...
I am trying to embed a JFace TableViewer in a SWT TabFolder, but when I do so, the table does not show up. The current (working code) in my GitToDo code looks like (see this Git repos):
final Display display = new Display();
final Shell shell = new Shell(display);
shell.setText("Git ToDo");
FillLayout layout = new FillLa...
Hi people,
I have a tabbed application which then has a navigation controller. In each the navigation controller I an a table View Controller which obviously contains a table. I push a new table view controller from this one.
I want to put a background to the table but can only add an image infront of the table. I think this may be bec...