1

我正在开发一个煎茶应用程序。我在其配置中为列表设置了“emptyText”。但过了一段时间我需要改变它。我使用以下行来做到这一点

invoiceList.setEmptyText('<div style="margin-top: 20px; text-align: center">Sorry! No Items Found</div>');

当我在 crome 中运行我的应用程序时,我看到以下错误

未捕获的类型错误:对象 [object Object] 没有方法“setEmptyText”

如何动态更改列表的emptyText

4

1 回答 1

0

Ext.List 在 sencha touch 1 中没有方法 setEmptyText。您可以使用 sencha touch 2 代替。也许此代码将在 sencha touch 1 中工作。您可以尝试。

invoiceList.emptyText = 'Empty test'
invoiceList.refresh();
于 2012-09-20T13:16:14.910 回答