-
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"); }