2013-01-16 60 views
0

我在使用vbox佈局的表單面板中使用密碼字段組件。在android中,當onfocus密碼字段顯示額外的字段。我在下面的鏈接,但我不明白的想法。 http://www.sencha.com/forum/showthread.php?125489Android Sencha Touch 1.1密碼字段(現場焦點顯示兩個字段)

請指導我如何解決這個問題。提前感謝。

{ 
    xtype:'passwordfield', 
    label:'Password', 
    id:'ap_pswd', 
    name:'ap_pswd_name', 
    labelWidth:'150px', 
    width:'400px', 
    required:true, 
    style:'margin-left:auto;margin-right:auto;', 
    }, 

回答

0

這是瀏覽器的原生行爲,因此您無法對此做任何處理。 您可以做的一件事就是在滾動時隱藏瀏覽器的輸入元素。

if (document.activeElement && ('blur' in document.activeElement) && 
       (document.activeElement.tagName == 'INPUT' || document.activeElement.tagName == 'TEXTAREA')) { 
      document.activeElement.blur(); 
     } 
+0

感謝您的回答CrourVult。它部分解決了我的問題。 –