0

Dojo ダイアログ機能があり、5 行のテーブルを追加できるようにしたいと考えています。これどうやってするの?以下は私が持っているコードです。

dojo.require("dijit.Dialog");
    dojo.require("dijit.form.TextBox");
    dojo.require("dojox.grid.EnhancedGrid");
    dojo.addOnLoad(function() {
    popup = new dijit.Dialog({
    title: "Non-Spatial Permanent Feature Deductions...",
    style: "width: 750px; height: 400px", 
    content: "<input dojoType='dijit.form.Button' type='button' name='name' id='name' label='OK'>" 
 });
    popup.show()
});
4

2 に答える 2

1

テーブル行が固定されている場合、つまり 5 の場合は、5 行のテーブルを持つ html ファイルを作成し、ダイアログ内でそのファイルを呼び出すという単純なことを行うことができます。

popup = new dijit.Dialog({
    title: "Non-Spatial Permanent Feature Deductions...",
    style: "width: 750px; height: 400px", 
    href:"table.html" 
 });
于 2013-08-05T06:25:46.823 に答える