Date: Wed, 30 Jan 2002 11:53:15 -0800
Reply-To: Deborah Testa <dtesta@SEVENOFNINESYSTEMS.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Deborah Testa <dtesta@SEVENOFNINESYSTEMS.COM>
Organization: MindSpring Enterprises
Subject: Querying the Value of a Frame Component from within Model SCL
My frame has a radio box (called SaveOrCancel) and a form viewer. From
within the form viewer's model SCL, I need to query the value of the the
radio box's selectedItem. Here's what I've got in the DFINIT section of the
model SCL:
DFINIT:
put 'Executing DFINIT section of InclusionCriteriaDataValidation.scl ...
';
dcl object FrameID;
dcl list FrameComponentsList = makelist();
FrameID = _viewer_.frameid;
FrameID._getComponents(FrameComponentsList);
dcl object SaveOrCancelID;
SaveOrCancelID = ??;
put SaveOrCancelID.selectedItem = ;
return;
What is the syntax for retrieving the value of selectedItem from
FrameComponentsList in the next to the last line?
Thanks,
Deborah
|