Playing around with the detailtoolstrip for a splitpane. Have done this:
They are right aligned, seemingly no matter what i do. If there's a way to specify in css/js i can't find it, and if i call
In the constructor for the splitpane.
I get "cannot access detailtoolstrip before the widget has been created". I'm apparently not great at this, is there an easy way to sort out the alignment?
Code:
setDetailToolButtons(new DefaultStripItem("Edit", null, false), new DefaultStripItem("Cancel", null, false), new DefaultStripItem("Banana", null, false));
Code:
getDetailToolStrip().setAlign(Alignment.LEFT); or getDetailToolStrip().setLayoutAlign(Alignment.LEFT);
I get "cannot access detailtoolstrip before the widget has been created". I'm apparently not great at this, is there an easy way to sort out the alignment?
Comment