I have a datasource that is a sharepoint list.
In my datasource i have a column called "xtype" and "xtype2"
I want to to push a button and update a textinput field on my app so that the datasource to the textinput changes.
For example
If user press button1 it sets textinput1 to have xtype in it´s Text option.
If user press button2 it sets textinput1 to have xtype2 in it´s Text option.
I have tried setting a variable on the Onselect on each button.
Likse this:
Set(buttonvar;xtype)
Set(buttonvar;xtype2)
Then put buttonvar in the textinput1 field
But i get error that xtype and xtype2 does not exist.
But they do...
What am i doing wrong?