Text input

Posts: 5
I'm having some trouble with the text input box for the control page.

I add the "input" and then it shows up on the control page, and as a datasource. I select this datasource for the field I want this text to go in, but nothing shows up. I'm likely missing a step here, but dont know what it is!
Posts: 287
I have a look and it is ok for me, do you choose Input1 or else in Data Binding (of the label)?
Edited (3 times)
Posts: 785
After adding an Input control, go to a Widget and select 'Input controls' as the dataset. Then go to a label in that widget and change the data bindings. Now you should be able to select any of your input controls as the binding.

It's possible that the text will only show up on your label when you run the theme in ATVO and not in the editor, I'm not sure.
Edited (1 time)
Posts: 66
I have had this issuse before, after adding the Input, you need to restart ATVO, then you can data bind to it.
Posts: 785
I fixed that bug a few builds back I think. Perhaps it is not yet in the stable channel, I'm not sure.
Posts: 287
How could I read in a script the value of an INPUT ?

I find it ...
var input = item.Theme.ControlInputs.Find("I_serie_name");
But what inside ?
Posts: 785
Just input.Text
Posts: 287
Simple, thanks ... I try a lot different ... DisplayText/ Get / Value .....