I'm using the ExtJS Direct proxy and need to know how to pass scope when calling a method. Currently im doing this
myapp.direct.action.mygridservice.getGridData("123",this.getSearchCbo().getValue(), function(p_,resp_){
//do something
}, this);
on the java method I added a third param for scope with type String but i still get an error that "this" is undefined
thanks