hi all,

i'm trying to map some elements into tellurium ui structure. The html is the 
following

<ul>
  <li>
     <img blabla>
     <div>
         <a blabla></a>
         <span blabla> blabla </span>
     </div>
  </li>

  <li>
     <img blabla>
     <div>
         <a blabla></a>
         <span blabla> blabla </span>
     </div>
  </li>

  <li>
     <img blabla>
     <div>
         <a blabla></a>
         <span blabla> blabla </span>
     </div>
  </li>
</ul>


what i am currently doing is:

List(blabla, separator:'li'){
    Image(uid:'image')

    Container(){
          UrlLink(uid: 'link')
          Span(uid: 'text')
    }
}


But i noticed that everytime you use lists in your tutorial, you have only 
one element in each 'li', so you just use the uid:'{all}'.
What should i do? (Apart from defining each element of the list separately)

Thanks in advance,

José Martins

-- 
You received this message because you are subscribed to the Google Groups 
"tellurium-users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tellurium-users/-/9HrN9agFvd0J.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/tellurium-users?hl=en.

Reply via email to