var UI$Contract$ddlForm_change = function() {
debugger;
//'this' is currently the drop down that fires the event
// My question is can I change the context so "this" represents another object?
this = SomeObject;
// then call methods on the new "this"
this.someMethod(someParam);
};
is this possible? Thanks, ~ck in San Diego