When will the new widgets be available?

This is great news, as we have just released an app that relies heavily on tableviews. Can’t wait to see what the new widgets bring!!! Great work! [import]uid: 179960 topic_id: 35951 reply_id: 142902[/import]

I wish the tableview widget supported multiple columns. Someone replied before one way to make multiple columns in it but looked complicated.

Icy, do you have one column or more?
[import]uid: 184193 topic_id: 35951 reply_id: 142909[/import]

Hey Warren,

It has multiple columns. Here is the itunes link where you can see what I mean:
https://itunes.apple.com/gb/app/primary-school-league-tables/id600670472?mt=8 [import]uid: 179960 topic_id: 35951 reply_id: 142915[/import]

I just looked at your app and it looks great along with the multiple columns! How do you set the columns like that? I looked in the documentation just now and do not see anything on how to do this.

Thanks!
[import]uid: 184193 topic_id: 35951 reply_id: 142920[/import]

You can blame my baby girl being born 5 weeks early (premature) for that delay, totally unexpected. She wasn’t meant to arrive until the 26th of this month.

To echo what Perry said, things are going very well so really soon. Thanks for your patience. [import]uid: 84637 topic_id: 35951 reply_id: 142922[/import]

Congratulations!! I hope all is well with her.

Warren
[import]uid: 184193 topic_id: 35951 reply_id: 142924[/import]

@warren

Thank you.

Yep she is doing very well :slight_smile: [import]uid: 84637 topic_id: 35951 reply_id: 142926[/import]

It’s actually pretty straight forward Warren.

Your rowrender function might look something like this:

local function onRowRender( event ) local row = event.row local rowGroup = event.view local halfh = row.height \*0.5 --add first column row.col1 = display.newText( "Column1: ",50,halfh, native.systemFont, 12 ) row.col1:setReferencePoint( display.CenterLeftReferencePoint ) row.col1.x= 50 row.col1.y = halfh row.col1:setTextColor( 0 ) --add second column row.col2 = display.newText( "Column2: ",150,halfh, native.systemFont, 12 ) row.col2:setReferencePoint( display.CenterLeftReferencePoint ) row.col2.x= 150 row.col2.y = halfh row.col2:setTextColor( 0 ) --add col1 and col2 to the row group rowGroup:insert( row.col1 ) rowGroup:insert( row.col2 ) end [import]uid: 179960 topic_id: 35951 reply_id: 142930[/import]

We’re doing the final spit and polish and, barring any unforeseen disasters, the new Widgets will be available Real Soon Now.
[import]uid: 199237 topic_id: 35951 reply_id: 142891[/import]

This is great news, as we have just released an app that relies heavily on tableviews. Can’t wait to see what the new widgets bring!!! Great work! [import]uid: 179960 topic_id: 35951 reply_id: 142902[/import]

I wish the tableview widget supported multiple columns. Someone replied before one way to make multiple columns in it but looked complicated.

Icy, do you have one column or more?
[import]uid: 184193 topic_id: 35951 reply_id: 142909[/import]

Hey Warren,

It has multiple columns. Here is the itunes link where you can see what I mean:
https://itunes.apple.com/gb/app/primary-school-league-tables/id600670472?mt=8 [import]uid: 179960 topic_id: 35951 reply_id: 142915[/import]

I just looked at your app and it looks great along with the multiple columns! How do you set the columns like that? I looked in the documentation just now and do not see anything on how to do this.

Thanks!
[import]uid: 184193 topic_id: 35951 reply_id: 142920[/import]

You can blame my baby girl being born 5 weeks early (premature) for that delay, totally unexpected. She wasn’t meant to arrive until the 26th of this month.

To echo what Perry said, things are going very well so really soon. Thanks for your patience. [import]uid: 84637 topic_id: 35951 reply_id: 142922[/import]

Congratulations!! I hope all is well with her.

Warren
[import]uid: 184193 topic_id: 35951 reply_id: 142924[/import]

@warren

Thank you.

Yep she is doing very well :slight_smile: [import]uid: 84637 topic_id: 35951 reply_id: 142926[/import]

It’s actually pretty straight forward Warren.

Your rowrender function might look something like this:

local function onRowRender( event ) local row = event.row local rowGroup = event.view local halfh = row.height \*0.5 --add first column row.col1 = display.newText( "Column1: ",50,halfh, native.systemFont, 12 ) row.col1:setReferencePoint( display.CenterLeftReferencePoint ) row.col1.x= 50 row.col1.y = halfh row.col1:setTextColor( 0 ) --add second column row.col2 = display.newText( "Column2: ",150,halfh, native.systemFont, 12 ) row.col2:setReferencePoint( display.CenterLeftReferencePoint ) row.col2.x= 150 row.col2.y = halfh row.col2:setTextColor( 0 ) --add col1 and col2 to the row group rowGroup:insert( row.col1 ) rowGroup:insert( row.col2 ) end [import]uid: 179960 topic_id: 35951 reply_id: 142930[/import]

Hi, I have not had a chance to use the example you gave me for inserting rows but plan to. Is there any way to add other controls such as a checkbox and buttons in a column of a row? And how can I tell if a row has been selected to do something?

Thanks!

Warren
[import]uid: 184193 topic_id: 35951 reply_id: 145518[/import]

Hi, I have not had a chance to use the example you gave me for inserting rows but plan to. Is there any way to add other controls such as a checkbox and buttons in a column of a row? And how can I tell if a row has been selected to do something?

Thanks!

Warren
[import]uid: 184193 topic_id: 35951 reply_id: 145518[/import]