html 에 <script type="text/xxjavascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>를 적어 준다.
js문서
Ext.application({
launch:function(){
Ext.create('Ext.Panel',{
fullscreen:true,
layout:'vbox',
items:[
{
xtype:'button', text:'버튼클릭', width:200, id:'btn1'
},
{
xtype:'button', text:'버튼클릭2', width:200, id:'btn2'
},
{
xtype:'textfield', label:'이름:', width:200, id:'txtIrum'
},
],
});
$("#btn1").live("click", function(){my();});
function my(){
Ext.Msg.alert(!'센차터치에서 jquery 사용');
}
$("#btn2").live("click", function(){
Ext.getCmp('txtIrum').setValue('홍길동');
});
}
});