Widget Candy List Back Button - How to do?

I am using the Widget List with several layers of groups of lists.
Every time i drill down to the next list i change the caption to reflect the list data as shown below

Widget List ->> select event.

onSelect = function(EventData)   
 \_G.GUI.Set( "myList", { caption = "My Data Caption" } )  
end  

My question is how do I detect the back button and change the list caption the previous cation based on the data being displayed??

Thanks

Larry [import]uid: 11860 topic_id: 33566 reply_id: 333566[/import]

Well i did not see it in the documentation but i found the code in the widget candy lua file
added it to the list table options and it works great.

@X-Pressive – please update your documentation with your event lists that would help :slight_smile:

onBackButton = function(EventData)   
 \_G.GUI.Set( "myList", { caption = "My Other Data Caption" } )  
end  

Larry [import]uid: 11860 topic_id: 33566 reply_id: 133386[/import]

Hi Larry,

@X-Pressive have a great documentations and products.

Maybe you missed the onBackButton and other great functions.
On their webpage, http://www.x-pressive.com/WidgetCandy_Corona/reference.html
at every widgets example usage, you have to click the button Listeners Functions (Click to Open) to see the functions.

They have Properties(Click to Open) and Methods(Click to Open) too.
Every other widgets have this buttons.

burhan

[import]uid: 74883 topic_id: 33566 reply_id: 133414[/import]

@doubleslashdesign: the docs should be up to date. As Burhan wrote you’ll find a description of the onBackButton listener widget by clicking on the List Widget’s “Listener Functions” button.

It might happen that you are eventually browsing an outdated version of the page from your browser’s cache. If so, please empty your browser’s cache and hit your browser’s refresh button to make sure that the actual page is loaded. [import]uid: 10504 topic_id: 33566 reply_id: 133471[/import]

Well i did not see it in the documentation but i found the code in the widget candy lua file
added it to the list table options and it works great.

@X-Pressive – please update your documentation with your event lists that would help :slight_smile:

onBackButton = function(EventData)   
 \_G.GUI.Set( "myList", { caption = "My Other Data Caption" } )  
end  

Larry [import]uid: 11860 topic_id: 33566 reply_id: 133386[/import]

Hi Larry,

@X-Pressive have a great documentations and products.

Maybe you missed the onBackButton and other great functions.
On their webpage, http://www.x-pressive.com/WidgetCandy_Corona/reference.html
at every widgets example usage, you have to click the button Listeners Functions (Click to Open) to see the functions.

They have Properties(Click to Open) and Methods(Click to Open) too.
Every other widgets have this buttons.

burhan

[import]uid: 74883 topic_id: 33566 reply_id: 133414[/import]

@doubleslashdesign: the docs should be up to date. As Burhan wrote you’ll find a description of the onBackButton listener widget by clicking on the List Widget’s “Listener Functions” button.

It might happen that you are eventually browsing an outdated version of the page from your browser’s cache. If so, please empty your browser’s cache and hit your browser’s refresh button to make sure that the actual page is loaded. [import]uid: 10504 topic_id: 33566 reply_id: 133471[/import]

Yep i missed that one, sorry.

Larry Meadows
www.TinyTapApps.com
www.DoubleSlashDesign.com
[import]uid: 11860 topic_id: 33566 reply_id: 133678[/import]

Yep i missed that one, sorry.

Larry Meadows
www.TinyTapApps.com
www.DoubleSlashDesign.com
[import]uid: 11860 topic_id: 33566 reply_id: 133678[/import]