Simple PlaceholderData Example
This example illustrates the simplest way of filling a placeholder with one column (default if no fieldnames defined) with simple textual data.
| Smartsite SXML |
|
|---|---|
<se:placeholder localid="test" />
<se:hidden whitespace="remove">
<se:placeholderdata targetid="test" value="Hello"/>
<se:placeholderdata targetid="test" whitespace="preserve" value=" "/>
<se:placeholderdata targetid="test" value="World!"/>
</se:hidden>
|
|
| Example Result |
|
|---|---|
Hello World! |
|