SOLVED

SharePoint OOTB Form

Copper Contributor

Hi,

I am new to the SharePoint OOTB. I need some help.

 

When a user creates a New Item, I need to disable one of the text input field and by default need to show the logged-in User Name.

 

Any help would be highly appreciated.

 

Thank you.

1 Reply
best response confirmed by GadiRajeev (Copper Contributor)
Solution

@GadiRajeev You need to customize the list form using Power Apps.

 

To disable the text input, set it's DisplayMode property to DisplayMode.View.

 

And set it's Default property to User().FullName - This gives the full name of currently logged in user.

Documentation:

  1. User function in Power Apps 
  2. Text input control in Power Apps 

Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.

1 best response

Accepted Solutions
best response confirmed by GadiRajeev (Copper Contributor)
Solution

@GadiRajeev You need to customize the list form using Power Apps.

 

To disable the text input, set it's DisplayMode property to DisplayMode.View.

 

And set it's Default property to User().FullName - This gives the full name of currently logged in user.

Documentation:

  1. User function in Power Apps 
  2. Text input control in Power Apps 

Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.

View solution in original post