LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (January 2002, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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


Back to: Top of message | Previous page | Main SAS-L page