dayext
23 Jul 2010, 6:09 AM
Hi,
method return "hidden=true" if is visible...
isVisible : function() {
if (!this.rendered) {
return false;
}
var p = this,
hidden = false;
while (p) {
if (p.hidden) {
hidden = true;
break;
}
p = p.ownerCt;
}
return hidden;
}
Sencha touch v0.91.
Regards,
alexc
method return "hidden=true" if is visible...
isVisible : function() {
if (!this.rendered) {
return false;
}
var p = this,
hidden = false;
while (p) {
if (p.hidden) {
hidden = true;
break;
}
p = p.ownerCt;
}
return hidden;
}
Sencha touch v0.91.
Regards,
alexc