0

我现在正在开发一个应用程序,我需要使用动态 ID 创建 dojo.mobile.view,我需要有关如何在单击事件中的 dojo 视图中创建视图的代码。

4

1 回答 1

1

这是来自http://dojotoolkit.org/reference-guide/1.8/dojox/mobile/View.html的 dojo 参考指南的代码片段

它为您提供了足够的信息来在运行时创建视图。

var view1 = new View(null, "view1");

var heading1 = new Heading({
  label: "View 1"
});
view1.addChild(heading1);

var categ1 = new RoundRectCategory({
  label: "Documents"
});
view1.addChild(categ1);

var list1 = new RoundRectList();
view1.addChild(list1);

var counter = 4;
for(var i = 1; i <= 3; i++){
  var item1 = new ListItem({
    icon: "images/i-icon-"+i+".png",
    label: "Document 000"+counter,
    moveTo: "view2"
  });
  list1.addChild(item1);
  counter++;
}

view1.startup();
于 2013-02-04T05:04:30.060 回答