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.
Sencha touch アプリケーションに削除アイコンが必要で、クリックすると確認メッセージが表示されるはずです。これは私が必要としていたものですが、新しいページに移動しました。これを解決する方法はありますか?
なぜあなたは書いたのxtype: 'formpanel'ですか?それはインスタであるべきxtype:'button'です。これは私のために働く:
xtype: 'formpanel'
xtype:'button'
{ title: 'Delete', iconCls: 'delete', cls: 'home', xtype:'button' , handler: function() { var del=confirm('Are you sure'); if(del) { console.log('confirm'); } ; }, },