Skip to main content

Notifications

Power Apps - Building Power Apps
Answered

Button to change text input mode from password to single line

(0) ShareShare
ReportReport
Posted on by 19

I have a value that is semi-sensitive, so we don't want it displayed by default. So I have set the text input mode to password. However, we may need to know what the value is, or change it.  Is there a way to change the field mode to single line via a button press? I can't seem to figure out how... I've been experimenting around TextInput1.Mode = SingleLine

Categories:
  • dsghi Profile Picture
    dsghi 19 on at
    Re: Button to change text input mode from password to single line

    Thank you! Minor syntax adjustments, but you got me there. I was clearly over thinking it. 🙂

     

    In button OnSelect 

    UpdateContext({varInputMode:!varInputMode})

     

    Text Input Mode

    If(varInputMode=true,TextMode.SingleLine,TextMode.Password)
  • Verified answer
    KickingApps Profile Picture
    KickingApps 628 on at
    Re: Button to change text input mode from password to single line

    @dsghi

    Set your button to a variable:

    UpdateContext(

         varInputMode, !varInputMode)

    })

    Set the Mode of the Text Input box to the following:

    If(
    varinputMode = true,
    TextMode.Password,
    TextMode.SingleLine)

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Kickstarter Events…

Register for Microsoft Kickstarter Events…

Tuesday Tip #12 Start your Super User…

Welcome to a brand new series, Tuesday Tips…

Tuesday Tip #13 Writing Effective Answers…

Welcome to a brand new series, Tuesday Tips…

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 144,940

#2
RandyHayes Profile Picture

RandyHayes 76,287

#3
Pstork1 Profile Picture

Pstork1 64,523

Leaderboard