Skip to main content

Notifications

Power Apps - Building Power Apps
Answered

Name visible based on button click

(0) ShareShare
ReportReport
Posted on by 2,111
If the checkbox "I do not know vendor name" is checked: The Vendor Name field becomes disabled  and submit button should be disabled
 
  • Verified answer
    WarrenBelz Profile Picture
    WarrenBelz 144,858 on at
    Name visible based on button click
    Quickest way (I assume that is a Modern Check box) on the DisplayMode of the Vendor Name control
    If(
       YourCheckBoxName.Checked,
       DisplayMode.Disabled,
       Parent.DisplayMode
    )
     
    Please click Does this answer your question 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 a Like.
    MVP (Business Applications)    Visit my blog Practical Power Apps    LinkedIn    Buy me a coffee
  • MiDer Profile Picture
    MiDer 130 on at
    Name visible based on button click
    Not the cleanest way, but should works:

    On load of the form set 
    UpdateContext({ctx_VendorUnknown: false})
     
    On Uncheck of the checkbox:
    UpdateContext({ctx_VendorUnknown: false})
     
    On check of the checkbox:
    UpdateContext({ctx_VendorUnknown: true})
     
    Displaymode for the field / button then 
    Switch(
        ctx_VendorUnknown,
         false, DisplayMode.Edit,
         true , DisplayMode.Disabled,
    DisplayMode.View
        )

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,858

#2
RandyHayes Profile Picture

RandyHayes 76,287

#3
Pstork1 Profile Picture

Pstork1 64,505

Leaderboard