Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
動的な列がないJSFpanelGridがあります。この場合、cssで列クラスをどのように宣言する必要がありますか?
<h:panelGrid id="testpanel" columns="#{message.no_of_columns}" rows="#{message.no_of_rows}" columnClasses="">
すべての列に同じCSSスタイルを使用したいと思います。
ありがとう。
列の数と同じ数の項目を含む連結文字列を生成します。
<h:panelGrid ... columnClasses="#{message.columnClasses}">
または、スタイルを再定義して、テーブルレベルで適用できるようにします。
<h:panelGrid ... styleClass="dynamicGrid">
と
.dynamicGrid td { /* Put the original CSS here, it'll get applied to every column. */ }