Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Cascades Development

Reply
New Developer
wilochoa14
Posts: 12
Registered: ‎10-15-2012
My Carrier: MOVILNET

Help with a XML, i need show the different levels of the XML

I need help to display an xml that has different levels, my xml is:

 

<root>
     <header title="Frutas"/>
           <sample name="Manzana" icon= "manzana.png">

                    <descripcion text="la manzana es roja" infotext="Manzana"/>

           </sample>

           <sample name="Pera" icon= "pera.png">

                    <descripcion text="la pera es verde" infotext="pera"/>

           </sample>

           <sample name="orange" icon= "orange.png">

                    <descripcion text="the orange is orange" infotext="Manzana"/>

           </sample>

</root>

 

how to make when selecting a fruit, showing me his description?

Thx for helpme

Please use plain text.
Trusted Contributor
Sith_Apprentice
Posts: 202
Registered: ‎05-02-2010
My Carrier: AT&T

Re: Help with a XML, i need show the different levels of the XML

[ Edited ]

ListView {
            dataModel: XmlDataModel {
                source: "xmlfile.xml"
            }
            listItemComponents: [
                ListItemComponent {
                    type: "sample"
                    Container {
                        Label {
                            text: ListItemData.name            
                        }
                    }
                },
                ListItemComponent {
                    type: "description"  
                    Container {                
                        Label {
                            text: ListItemData.text
                        }
                    
                    }
                }
            ]
        }

 

 

Take a look at the cascades cookbook qml main.qml file (and the recipeitem.qml file) this will give you a good understanding of the listview and using xml documents.

If you are the original poster (OP) and your issue is solved, please remember to click the "Accept as Solution" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the Star on the left of their post.
Please use plain text.