• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. accessing hiCreateToggleField individual values

Stats

  • Locked Locked
  • Replies 2
  • Subscribers 143
  • Views 14285
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

accessing hiCreateToggleField individual values

DaveDesigner
DaveDesigner over 11 years ago

Hello, I have been struggling for a long time trying to figure out how this hiCreateToggleField works. I can't seem to figure out how to access individual items that are actually selected by the user. I put together a little testcase that I think will help me understand if you could modify it to "only" print what is selected in the form?

procedure(serdes_pop()
let((popWhat singleLib allLib libChoice labelField lib)

 mylist=list( list( 'MT1 "MT1" ) list( 'MT2 "MT2" ) )

     popWhat = hiCreateToggleField(
               ?name 'popWhat
               ?prompt "Populate:"
               ?choices mylist
               ?itemsPerRow 1
               )
  labelField = hiCreateLabel(
               ?name 'myLabel
               ?labelText "_________________________________________________"
               )
     popForm=hiCreateAppForm(
             ?name 'popFormdcr
             ?formTitle "Populate cadencelibs"
             ?callback 'popLib16CB
             ?fields list(popWhat labelField)
             ?unmapAfterCB t
               )
     hiDisplayForm(popForm)
  );endlet
 );endprocedure

procedure(popLib16CB(popForm)
prog((singleLib)
when(popForm
foreach(a popForm->popWhat->_toggleItems
print(symbolToString(a))
)
    )
    return(t)
))

  • Cancel
Parents
  • Li Ting
    Li Ting over 11 years ago

    Here is an example of how to use foreach with multiple iteration variables...

    procedure(popLib16CB(popForm)

        prog((singleLib)

    when(popForm

    foreach( (n v) popForm->popWhat->_toggleItems popForm->popWhat->value

    when( v print(symbolToString(n)) ) ) ) return(t) ) )

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • Li Ting
    Li Ting over 11 years ago

    Here is an example of how to use foreach with multiple iteration variables...

    procedure(popLib16CB(popForm)

        prog((singleLib)

    when(popForm

    foreach( (n v) popForm->popWhat->_toggleItems popForm->popWhat->value

    when( v print(symbolToString(n)) ) ) ) return(t) ) )

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information