is it possible that i map a url retrieved from a xml file to an array of buttons?
e.g.
precode
<root>
<link>
<url>http://www.google.de</url>
<name>Google</name>
</link>
<link>
<url>http://www.appery.io</url>
<name>Appery</name>
</link>
<link>
<url>http://www.some.url</url>
<name>Example</name>
</link>
/code/pre
then i create an array of containers from "link" and inside is always a button which should target to "url".
in the xml mapping i can only map it to "text"-attribute of the button
thank you