Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
extjsフォームの空白のテキストフィールドからフォーカス(テキストフィールドの周りの赤い枠)を削除する方法. デフォルトでは、テキストフィールドにフォーカスがあります。
テキストフィールドをリセットする(テキストを削除して検証メッセージをクリアするなど)ことを意味する場合は、resetメソッドを使用できます。
テキストフィールドIDがmyTextFieldの場合は、次を使用する必要があります。
Ext.getCmp('myTextField').reset();
お役に立てれば。