I am sure this is not nearly as complicated as I'm making it but I can't seem to get anything to work.
I am trying to use relative referencing from within an event handler defined in frame1 of the application. My code looks like this:
.
.
.
this.frmPharmacy.xin_xc.trigger();
var res = function () {
//how do I reference form objects here??
this._parent.frmPharmacy.xin_xc.trigger();
};
this.frmPharmacy.xout_xc.addEventListener("result", res);
.
.
.
I've tried every combination I can think of and nothing seems to work. I know the event handler is firing because I put a trace statement in. How do I reference back to the form objects using 'this.' notation?
Thanks!
I am trying to use relative referencing from within an event handler defined in frame1 of the application. My code looks like this:
.
.
.
this.frmPharmacy.xin_xc.trigger();
var res = function () {
//how do I reference form objects here??
this._parent.frmPharmacy.xin_xc.trigger();
};
this.frmPharmacy.xout_xc.addEventListener("result", res);
.
.
.
I've tried every combination I can think of and nothing seems to work. I know the event handler is firing because I put a trace statement in. How do I reference back to the form objects using 'this.' notation?
Thanks!