gpt4 book ai didi

javascript - 将表添加到我的 dojo 代码中

转载 作者:行者123 更新时间:2023-12-02 18:29:03 26 4
gpt4 key购买 nike

我有一个 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()
});

最佳答案

如果您的表格行是固定的,即 5 行,那么您可以做一件简单的事情,即创建一个包含 5 行的表格的 html 文件并在对话框内调用该文件。

popup = new dijit.Dialog({
title: "Non-Spatial Permanent Feature Deductions...",
style: "width: 750px; height: 400px",
href:"table.html"
});

关于javascript - 将表添加到我的 dojo 代码中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18018465/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com