TableViewList issue

in the sample of table view list
I can only have 1 row of text?

for example: In my table list I have 1 text in 1 row but I want to add another Text into this row

can be done?

myList = tableView.newList{  
 data = data,  
 default = "listItemBg\_white.png",  
 over = "listItemBg\_over.png",  
 onRelease = listButtonRelease,  
 top = topBoundary + 20,  
 bottom = 16,  
 callback = function( row )   
 local t = display.newText( row, 0, 0, native.systemFontBold, 17 )  
 t:setTextColor(0, 0, 0)  
 t.x = math.floor(t.width/2) + 12  
 t.y = 46   
  
 return t  
 end  
}  

this is the code for the list that I use from sample

I want to add another “t” with another text

can be done?

thanks [import]uid: 23063 topic_id: 16536 reply_id: 316536[/import]

never mind… got it

for i = 1, #data do  
 data[i].title = "test"  
 data[i].subtitle = "test2"  
end  
local myList = tableView.newList{  
data=data,  
default="listItemBg.png",  
backgroundColor={255,2552,255},  
callback = function( row )  
local g = display.newGroup()  
  
local title = display.newText( row.title, 0, 0, native.systemFontBold, 14 )  
title:setTextColor(0,0,0)  
g:insert(title)  
title.x = title.width\*0.5 + img.width + 6  
title.y = 30  
  
local subtitle = display.newText( row.subtitle, 0, 0, native.systemFont, 12 )  
subtitle:setTextColor(80,80,80)  
g:insert(subtitle)  
subtitle.x = subtitle.width\*0.5 + img.width + 6  
subtitle.y = title.y + title.height + 6  
  
return g  
end  

thanks to [html]http://blog.anscamobile.com/2010/09/create-scrolling-list-views-with-text-and-graphics-in-coronasdk-ios-android-tutorial/[/html] [import]uid: 23063 topic_id: 16536 reply_id: 61917[/import]