Total newb here. But could use some help.
Overview: Have a check box that when selected will input a "notification" into a view only textinput box. Have a reset button that will reset the check box to false(unchecked) but the input text will not clear from the textinput box. I cannot for the life of me figure out what I'm missing and the worst part is I know its something small.
Check Box:
OnSelect > If(CRSPresent.Value = true, UpdateContext({NotificationsValue:"File Note: CRS Replacement advised/not"}),UpdateContext({NotificationsValue:""}))
TextInput: (Named 'Notifications')
Default >NotificationsValue
Reset Button:
Reset(Notifications);
If I change the textinput box to "edit" and type manually in the box then the reset button will function but it will not remove the text unless I manually un-check the assigned checkbox.
Imma confused. Apologize for the newbie question. Teaching myself as I go. TIA