Hello, I'm beginning with dwr, I'm having a problem with the callback
function. When i call a method with dwr, the method run, but never call the
callback function.. here it's my code
function getMoviles(){
movilDWRManager.getAll( funcionOne);
}
//never is call
function funcionOne(r){
alert(r);
}Thank you very much!
