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

How to position a commandButton on top of tabview header ?

I tried out this but failed to position the commandButton on top of tabview. Instead the commandButton gets hidden by the tabview

        <h:commandButton value="View all" style=" float:right;  z-index: 1000;" />

        <p:tabView style=" z-index: 5;" >

            <p:tab ...>
            </p:tab>

            <p:tab ...>
            </p:tab>

        </p:tabView>
share|improve this question

1 Answer

up vote 0 down vote accepted

If you add position:absolute; to your <h:commandButton> style it will be on top of the <p:tabView>.

share|improve this answer
but float:right doesnt work then .. – user01 Jul 19 '11 at 4:07
Absolute position elements ignore the float property. You'll have to use left or right properties to position horizontally. – Mark Robinson Jul 19 '11 at 12:13

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.