Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Please find uibinder code below :

But, the button is not aligned properly in browser. but it is showing properly in eclipse designer.

Please help me to solve this.

<g:HorizontalPanel ui:field="a" width="100%" height="100%" horizontalAlignment="ALIGN_CENTER" verticalAlignment="ALIGN_MIDDLE">
        <g:Button width="150px" height="30px" ui:field="button">Click ThisThis</g:Button>
</g:HorizontalPanel>

Thanks, Bennet

share|improve this question

1 Answer

Wrap any children of a DockPanel, HorizontalPanel, or VerticalPanel that you need to set alignment on in a element.

<g:HorizontalPanel>
    <g:cell width="800px" horizontalAlignment="ALIGN_RIGHT">
        <g:Button ui:field="closeButton" text="Close" />
    </g:cell>
</g:HorizontalPanel>

Have a look to this link.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.