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.
フォームを送信したらファイルフィールドをリセットする方法はありますか?
私は試した
Form.reset()
また
Ext.getCmp('fileupload').reset();
そして何も起こりませんでした。
あなたの場合の Form にはxtypeという形式があると思います。その場合、最初に実際のフォームを取得する必要があります。そうしないと、フォームの代わりにパネルで .reset() を呼び出すことになります。
Form.getForm().reset()