Hi experts
I need that, when I press a button, write a value in a text box, for example:
If I make a clic in a "Boton" I need write in a Textinput "Casa"
I try this: TextInput3.Text = "casa"
but not work.
Can you help me please!!
Thank you!!
Solved! Go to Solution.
Hi @Carlospernia ,
Put this on the OnSelect of the button
UpdateContext({vText:"casa"});
Reset(YourTextBoxName)
In the Default of your Text box
If(
!IsBlank(vText),
vText,
Parent.Default
)
then add this at the end of any form save or screen exit code
UpdateContext({vText:Blank()})
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @Carlospernia ,
Put this on the OnSelect of the button
UpdateContext({vText:"casa"});
Reset(YourTextBoxName)
In the Default of your Text box
If(
!IsBlank(vText),
vText,
Parent.Default
)
then add this at the end of any form save or screen exit code
UpdateContext({vText:Blank()})
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
261 | |
130 | |
86 | |
86 | |
68 |