문제

I need to set the panelGrid fixed while scrolling the page.

e.g. the bottom bar on the top should be fixed, while scrolling the datatable.

    <h:panelGrid id="buttonGrid">
....
</h:panelGrid>


<p:dataTable id="datatable" .....>
....
</p:dataTable>

How can I solve this?

도움이 되었습니까?

해결책

This works:

<h:panelGrid id="buttonGrid" styleClass="fixed-class">
            <h:outputText value="text text"/>
            <h:outputText value="text text"/>
            <h:outputText value="text text"/>
            <h:outputText value="text text"/>
            <h:outputText value="text text"/>
</h:panelGrid>

css:

.fixed-class{
    position: fixed;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top