Sencha Touch,打开selectfield时显示iframe

时间:2014-07-22 01:14:37

标签: css extjs sencha-touch sencha-touch-2.3

我在更改Sencha Touch 2.3.0中的selectfield项时遇到问题。如下图所示,我得到了一个蓝屏"每当我尝试拖动selectfield项以更改其值时。

app layout

当我在Chrome上使用inspect-element时,我发现它是一个iframe。

所以我试图"删除"通过在CSS中设置iframe

iframe {
    display: none !important;
}

index.html之上,但它没有用。所以我在CSS中尝试了另一种方法

iframe {
    visibility:hidden !important;
    width: 0px !important;
    height: 0px !important;
}

它仍然无法正常工作,蓝屏仍在那里。如何删除此iframe?

0 个答案:

没有答案