
ackmanx
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2018
02:08 PM
LabelList OK remote event binding lost
I have a LabelList that works fine. When I select an item my master component replaces the LabelList Group component with a different Group component. When the user presses Back the master component creates another LabelList Group component instance and replaces the previous page. The up and down events work with the LabelList but OK doesn't do anything.
Any ideas?
Any ideas?
2 REPLIES 2
joetesta
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2018
10:42 AM
Re: LabelList OK remote event binding lost
How are you observing the "OK" click? You probably need to re-instantiate your observer on the newly generated list component.
aspiring

ackmanx
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2018
05:27 PM
Re: LabelList OK remote event binding lost
I am not directly observing "OK", but rather listening for a field change.
Thanks for the help. You made me realize I was not in fact re-observing the field with the newly generated list component like you mentioned.
m.setList = QuizletSetList.findNode("LabelListID")
m.setList.observeField("itemSelected", "openSet")
Thanks for the help. You made me realize I was not in fact re-observing the field with the newly generated list component like you mentioned.