How use JQuery and Sencha Touch. For example I have a sencha button, on click nothing happens. JQuery work I check.
xtype: 'button',
text: 'Get result',
docked: 'bottom',
id: 'myBtn',
and have JQuery
$(document).ready(function() {
//alert('true');
$("#myBtn").click(function() {
alert('true');
console.log('info');
});
});
It's possible?