Thanks Dioc,
now my table has the layout and the function I want. It's really great, slowly
but surely I'm wondering if there is anything qooxdoo couldn't deal with. Even
my first migration from 0.7.1 to 0.7.2 worked without any problems. I'm loving
it ;-)
Best regards, Christian
-
Hello Christian,
I hope the following code may be useful.
var menubar = new qx.ui.pageview.buttonview.ButtonView;
menubar.set({
left : 10,
top : 10,
right : 10,
bottom : 10
});
menubar.addToDocument();
var btn = new qx.ui.pageview.buttonview.Button("Frontpage");
btn.setChecked(t
I've built a navigation using ButtonView with several Buttons, one of these is
called "Frontpage", another is called "Logout". Executing "Logout" should clean
up the application and after that "Frontpage" should be active. But everything
I do, always "Logout" is checked when the EventListener fu