Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

treecol.type

type
型: 下記の値のいずれか一つ
tree column の種類。デフォルトは内容をテキストとして表示するテキストコラムです。
  • checkbox: コラムの内容は checkbox です。
  • progressmeter: コラムの内容は進捗メータです。これは Mozilla のダウンロードマネージャウィンドウで使用されています。
  • text: コラムの内容はテキストです。

type="checkbox" を使用するときは、tree および各 treecol が editable でなければなりません。checkbox を切り替えられるようにするには CSS を適用する必要があります。これは、現在のテーマの checkbox を使用する CSS スタイルの例です:

treechildren::-moz-tree-checkbox
{
  /* unchecked checkbox treecells */
  list-style-image: none;
}
treechildren::-moz-tree-checkbox(checked)
{
  /* checked checkbox treecells*/
  list-style-image: url("chrome://global/skin/checkbox/cbox-check.gif");
}
treechildren::-moz-tree-checkbox(disabled)
{
  /* disabled checkbox treecells */
  list-style-image: url("chrome://global/skin/checkbox/cbox-check-dis.gif");
}

参照

ドキュメントのタグと貢献者

 このページの貢献者: Marsf
 最終更新者: Marsf,