Skip to main content

Notifications

Power Apps - Building Power Apps
Unanswered

Edit button is not display properly in user screen and admin screen

Posted on by

Hello, i have developed a power apps similar to Help desk app to submit the issue by requesters and admin team to work on that.

 

AJ_vizMan_0-1623576547301.png

 

I need to enable the 'edit' button for non-admin(s) when ticket status is either 'New' or 'Pending' else it should be disabled. In case of admin person login in app, 'edit' button should be enabled for either 'New', 'Assigned', 'In Progress' or 'Pending' status and for other cases, it should be disabled.

I am using below expression in 'Display Mode' to achieve above functionality but, it's behavior is not consistent, sometimes it work fine and sometime it doesn't.

 

If(!isAdmin && (SelectedTicket.TaskStatus.Value = "New" || SelectedTicket.TaskStatus.Value = "Pending") , DisplayMode.Edit, If(!isAdmin && (SelectedTicket.TaskStatus.Value = "Rejected" || SelectedTicket.TaskStatus.Value = "In Progress" || SelectedTicket.TaskStatus.Value = "Resolved" || SelectedTicket.TaskStatus.Value = "Assigned") , DisplayMode.Disabled, If(isAdmin && (SelectedTicket.TaskStatus.Value = "Assigned" || SelectedTicket.TaskStatus.Value = "In Progress" || SelectedTicket.TaskStatus.Value = "Pending" ) , DisplayMode.Edit, If(isAdmin && (SelectedTicket.TaskStatus.Value = "Resolved" || SelectedTicket.TaskStatus.Value = "Rejected") ,DisplayMode.Disabled))))

 

Please suggest why the 'edit' button is behaving randomly.

 

  • WarrenBelz Profile Picture
    WarrenBelz 143,487 on at
    Re: Edit button is not display properly in user screen and admin screen

    Hi @AJ_vizMan ,

    Just checking if you got the result you were looking for on this thread. Happy to help further if not.

    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.

  • WarrenBelz Profile Picture
    WarrenBelz 143,487 on at
    Re: Edit button is not display properly in user screen and admin screen

    Hi @AJ_vizMan,

    I have consolidated the code a bit below - note at the end I have allowed for the button to be disabled if none of the condition combinations are true. Please note this is free-typed and meant to be syntax guidance only.

    With(
     {wStatus:SelectedTicket.TaskStatus.Value},
     If(
     wStatus = "Pending" && 
     (!isAdmin && wStatus = "New") ||
     (
     IsAdmin && 
     (wStatus = "Assigned" || wStatus = "In Progress)
     ),
     DisplayMode.Edit, 
     wStatus = "Resolved" &&
     (
     !isAdmin && 
     (wStatus = "Rejected" || wStatus = "In Progress" || wStatus = "Assigned")
     ) ||
     (isAdmin && wStatus = "Rejected"),
     DisplayMode.Disabled,
     DisplayMode.Disabled
     )
    )

     

    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.

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

November 2024 Newsletter…

November 2024 Community Newsletter…

Community Update Oct 28…

Power Platform Community Update…

Tuesday Tip #7 Community Profile Tips…

Welcome to a brand new series, Tuesday Tips…

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 143,487

#2
RandyHayes Profile Picture

RandyHayes 76,308

#3
Pstork1 Profile Picture

Pstork1 64,014

Leaderboard