Hi,
I have a SharePoint list created, the data is updated via the code below which is added to the button OnClick event.
Patch(
dataRecordSet,
LookUp(
dataRecordSet,
Title=1
),
{
input_1: Checkbox_1.Selected.Value,
input_2: Radio_button_1.Value
}
)
I checked the SharePoint list and the updated value is present, however whenever I refresh the app, the new value isn't stored in the checkbox_1 state. How can I update the input states for all the elements on app start based on the SharePoint list values?
Solved! Go to Solution.
What do You have in the Default Property of both of the inputs?
If both are just set to false, apply this to them
CheckBox
Lookup(dataRecordSet, Title = 1,input_1)
Radio
Lookup(dataRecordSet, Title = 1,input_2)
What do You have in the Default Property of both of the inputs?
If both are just set to false, apply this to them
CheckBox
Lookup(dataRecordSet, Title = 1,input_1)
Radio
Lookup(dataRecordSet, Title = 1,input_2)
User | Count |
---|---|
262 | |
110 | |
90 | |
54 | |
44 |