我最初有一个隐藏的标签
var lblField = new Ext.form.LabelField({ xtype: 'label', text: 'This is lable text', hideLabel: true, hidden: true });
我试图通过 -
使其可见lblField.setVisible(true);
但是标签根本不可见 我在这里做错了什么
答案 0 :(得分:1)
请试一试。
var lblField = new Ext.form.Label( {
text: 'This is lable text',
hidden: true,
renderTo: Ext.getBody()
});
setTimeout(function(){
lblField.setVisible(true);
}, 2000);
我为此创造了一个小提琴。 http://startandroid.ru/ru/uroki/vse-uroki-spiskom/164-urok-99-service-uvedomlenija-notifications