2
以下に示すように、表のさまざまな要素のCSS定義があります(詳細は省略されていますが、参照できるスタイル名のみ)。 GWT FlexTableヘッダーの列
table.entities {
border: 1px solid #c5d7ef;
border-collapse: collapse;
width: 100%;
margin-bottom: 0;
}
table.entities th, table.entities td {
padding: .25em 1.5em .5em .5em;
}
table.entities th {
font-weight: bold;
text-align: left;
background: #e5ecf9;
white-space: nowrap;
}
table.entities th a, table.entities th a:visited {
color: black;
text-decoration: none;
}
table.entities td {
background-color: #fff;
text-align: left;
vertical-align: top;
cursor: pointer;
}
table.entities tr.even td {
background-color: #f9f9f9;
}
そして、私のような偶数行のスタイル適用されます。
flexTable.getRowFormatter().getElement(row).setClassName("even");
をしかし、いくつかの理由で、ヘッダのスタイルは、テーブルには適用されません。ここではそれが
theader
のようなものにth
からヘッダーのスタイルを変更させるための有効な仮定であるならば、私はそれは私が最初の行にスタイルを適用するth
を期待されたよう
- を試してみましたが、わからなかったものです最初の行に対して行フォーマッタを使用して明示的に最初の行に適用されます。私は1 & 0の両方として最初の行の値を試してみましたが、どちらかは私が
誰もが私が間違っているかもしれないところ私はスポッティング助けることができるが、その結果得られませんでしたか?
元の質問にスタイルの詳細を追加しました –
@ vishal.biyani、ok「
あなたは
関連する問題