I'm working on a custom control that has custom properties.

If I want to use the value of a property it is very easy. For the value of the property "maptype" I can use compositeData.maptype But how do I do this wit groups?

For example I have a goup called "Marker" and there can be multiple of them. Each marker has five properties: "address", "title", "layer", "infotext" and "icon". How do I access for example the value of title on the third marker?

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

the group of properties is interpreted as com.ibm.xsp.binding.PropertyMap java class. The multiple instances are interpreted as java.lang.ArrayList class. Knowing this I would try

compositeData.Marker[2].address

for simple data binding. Or

compositeData.Marker.get(2).get('address')

for accessing via pure javascript.

link|improve this answer
Thank you Denny, I solved the problem with your help end some aditional "'". This worked for me: var test = [ #{javascript:"'" + compositeData.marker[0].address + "'"} ]; alert(test); – Martin Meijer Feb 17 at 11:08
feedback

There are many ways to use it. It is just a collection with properties that you can iterate. One way could be to use it inside a repeat control. This is an example how you could use it:

            <xp:repeat id="repeat1" rows="30"
                value="#{javascript:compositeData.Marker}"
                var="rowMarker">

                <xp:label id="lbladdress"
                    value="#javascript:rowMarker.address}">
                </xp:label>
                <xp:label id="lbltitle"
                    value="#javascript:rowMarker.title}">
                </xp:label>

            </xp:repeat>
link|improve this answer
Thank you Ferry, your example is about how you can loop in a repeater, but I want to loop in Javascript. I'm looking for something like compositeData.Marker[2].title but that doesn't work. – Martin Meijer Feb 17 at 9:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.