I have parameters from a screen that look like this when I display
$data.getParameters() = {line=[1],[2],[3]}{count=[5],[6],[7]}{action=match}
$data.getParameters().line = 1
$data.getParameters().count=5
$data.getParameters().action=match

#foreach($item in $data.getParameters())  ## results in $item being null

#foreach($item in $data.getParameters().line)  ##  results in $item being
null

#foreach($item in $data.value) ## results in $item being null

Is there a way to access the sub items in line or count?

Robert Lee



Reply via email to