需要div创建的帮助

时间:2011-03-21 10:09:46

标签: dojo

我需要创建与桌面应用程序类似的内容,但需要在网站上。enter image description here

所有这些面板都是Java中的对象,具有属性类型,编号和名称。我的数组中有相同的对象(json格式,我使用dojo.declare创建对象数组)。如何为这个东西创造一个对象 enter image description here

如何创建?有人可以帮忙吗?

1 个答案:

答案 0 :(得分:2)

var container = dojo.create("div");

dojo.forEach(array, function(obj) {
    var wrapper = dojo.create("div", null, container);
    var topline = dojo.create("div", null, wrapper);
    var bottomline = dojo.create("div", {"class":"IDField"}, wrapper);
    var leftcell = dojo.create("div", {"class":"LetterField"}, topline);
    var rightcell = dojo.create("div", {"class":"NumField " + (obj.NumField === 0 ? "Gray" : "Yellow")}, topline);

    leftcell.innerText = obj.......
         :
         :
});