I have a problem with using Ajax.
function GetGrantAmazonItemCnt(){
var cnt;
Ext.Ajax.request({
url : '',
params : {},
success :function(response){
cnt = response.responseText;
}
});
return cnt;
}
The problem is, before get the ajax response, it return cnt. so it always return NULL.
is there a way to make right return response value?
Thanks you!