TrimExplodeViewHelper
This is a ViewHelper to convert a comma separated value into an array. All values will be trimmed.
General properties
- Name
- 
            
    Name: 
- Type
- 
            
    Type: :Description: Description: :Default value: Default value: 
 
- Name
 - Type
- 
            
    string 
- Description
- 
            
    Delimiter 
- Default value
- 
            
    , 
 
Examples
Basic example
<f:for each="{poiCollection.address -> maps2:trimExplode()}" as="address" iteration="iterator">
  ..do something with {address}
</f:for>        
        Copied!