1

我正在尝试使用 Sencha Touch 2 的这个简单示例在面板中显示数据,但它不起作用:

var planetEarth = {
    name: "Earth",
    mass: 1.00
};

var planetInfo = new Ext.XTemplate("<h2>{name}</h2>mass: {mass}");

var profile = Ext.create('Ext.Panel', {
  fullscreen: true,
  xtype: 'panel',
  layout: 'fit',
  data : planetEarth,
  tpl: planetInfo
});

Ext.Viewport.setActiveItem(profile);

知道为什么吗?

4

1 回答 1

1

似乎对我有用:http ://www.senchafiddle.com/#KxGHo

[编辑]为了澄清,您需要等到文档完成加载,然后再定义和执行任何用于构建用户界面的代码。将您的代码放在应用程序的“启动”方法中。

于 2012-05-15T09:11:07.113 回答