Sure, you can. But shouldn't the list will be on the "scrolling" level ?,
i.e.,
List(uid:"images", clocator:[tag:"div", class:"scrolling"]){
Container(uid: "all", clocator: [tag: "div"]){
...
}
On Thu, Oct 29, 2009 at 4:37 PM, Manoj Chavan <[email protected]>wrote:
>
> Hi,
>
> I have the following html and wanted to know if I can use a List
> container for the div arrary
> under "scrolling". Or is there a better way to generalize the array as
> the size can change
> dynamically.
>
> Manoj
>
> <div class="mod-content">
> <div class="buttons">
> <ul>
> <li> </li>
> <li class="selected"></li>
> <li> </li>
> <li> </li>
> </ul>
> </div>
> <div class="bd">
> <div class="scrolling">
> <div class="tabcont" style="opacity: 0;">
> </div>
> <div class="tabcont selected" style="opacity: 1;">
> </div>
> <div class="tabcont" style="opacity: 0;">
> </div>
> <div class="tabcont" style="opacity: 0;">
> </div>
> </div>
> </div>
> </div>
>
>
>
> ui.Container(uid:"rotator", clocator:[tag:"div",class:"mod-content"]){
> Container(uid:"buttons", clocator:[tag:"div",class:"buttons"]){
> List(uid: "tnails", clocator: [tag: "ul"], separator: "li"){
> UrlLink(uid: "all", clocator: [:])
> }
> }
>
> Container(uid:"upperdiv", clocator:[tag:"div", class:"bd"){
> Container(uid:"images", clocator:[tag:"div",
> class:"scrolling"]){
> List(uid: "divs", clocator: [tag: "div"]){
> UrlLink(uid: "all", clocator: [:])
> }
> }
> }
> }
>
>
> so to access one of the divs I want to do is
> "get<Someting>(rotator.upperdiv.images[i]);"
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"tellurium-users" group.
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
-~----------~----~----~----~------~----~------~--~---