Horizontal list and vertical list.

Hello all, Hope somebody might be able to help on this.

I’m making a application like Pulse, I have found the horizontal list, it’s http://developer.coronalabs.com/code/scrollable-lists-scrollview-alike and it’s work perfect like I wish.

But I want make a horizontal list into vertical list, something like Pulse application. I have myList1, myList2… are horizontal lists

local listElements = {   
 myList1, myList2... }   
  
local myList = sList.create(listElements,{  
 type = "objects",   
 orietation = "vertical",   
 scrollType = "multi",  
 height = 480,  
 elemHeight = 130,  
 elemWidth = 320  
 })  

But it’s not work, after that, I used tableView. something like

local data = {}  
  
for i=1, 20 do  
 data[i] = myList  
  
end  
  
myList = tableView.newList{  
 data=data,  
 top=topBoundary,  
 bottom=bottomBoundary,  
 callback=function(row)   
 local g = display.newGroup()  
 g:insert(row)  
 return g  
 end  
}  

But still not work :(, anyone can share me solution? Thanks [import]uid: 50306 topic_id: 28564 reply_id: 328564[/import]

Hello all, anyone help me, please? [import]uid: 50306 topic_id: 28564 reply_id: 115269[/import]