-
10 Sep 2012 4:33 AM #1
Unanswered: FillToolItem is not working
Unanswered: FillToolItem is not working
I am using GXT 2.2.5
My problem is, that a FillToolItem does not push the elements, which are added afterwards, to the right.
Here some example code:
Result should be:Code:public class HeaderPanel extends ToolBar { public HeaderPanel() { this.add(new ContentPanel()); this.add(new FillToolItem()); this.add(new ContentPanel()); } }
[ContentPanel][ Space ][ContentPanel]
but is:
[ContentPanel][ContentPanel]
I hope somebody can help me with this problem.
Thanks in advance


Reply With Quote