いくつかのテキスト フィールドとボタンを含む dojox.layout.TableContainer を用意します。ただし、ボタンのラベルはボタンの前とボタンの上に表示されます。以下は、若干の変更を加えたコードのサブセットです。
var tableContainer = new dojox.layout.TableContainer(
{
cols: 1
});
var txtBox = new dijit.form.TextBox({
id: "txtBox1",
name: "txtBox1",
label: "First TextBox:"
},"ftxtb");
var addBtn = new dijit.form.Button({
label: "Add Button"
});
tableContainer.addChild(txtBox);
tableContainer.addChild(addBtn);
TextBoxes のラベルは問題ありませんが、ボタン以外にボタン ラベルを表示したくありません。ボタンを明確にするために、次のように表示されます。
Add Button <Add Button>
ボタンの外でラベルを非表示にするにはどうすればよいですか?