3. ConceptSet
<?
var @cs: conceptset
/* Assign the concept set with a single concept from @ConceptProperty1 */
@cs := @ConceptProperty1
/* Loop through the range of the concept set data field */
loop range of @ConceptSetProperty
/* Add the current concept from the range to the concept set @cs */
@cs := @cs + concept
end
/* Remove @ConceptProperty2 from the concept set @cs */
@cs := @cs - @ConceptProperty2
/* Loop through the concepts included in the concept set of @ConceptSetProperty */
loop @ConceptSetProperty
/* ... */
end
?>Checkbox List Example
Textbox Example
Last updated
Was this helpful?