1

I have a Sharepoint List with columns "name", "date", "stage", "information".

"stage" is a checkbox column and "information" is a multi-line text box.

Is it possible when a "stage" checkbox is selected while creating new item, form will populate the "information" text box with some default information for the user to see?

If so, how would I implement this functionality?

Thanks!

Ganesh Sanap - MVP
  • 44,918
  • 21
  • 30
  • 61
Gary Zhu
  • 11
  • 1

1 Answers1

0

Yes it is possible. You can attach JSLink to the list-view wepbart with custom code which will handle this functionality. You can see some other examples here: https://code.msdn.microsoft.com/office/Client-side-rendering-JS-2ed3538a

Sohail Shaikh
  • 985
  • 1
  • 8
  • 18
Most3k
  • 1
  • 2
  • I can't seem to find list-view webpart in the create item form. I'm doing this through the website. Is there a tool I should use? I am completely new to SharePoint. – Gary Zhu Oct 26 '18 at 20:52
  • It is done in other way: you want to develop JSLink which will run on new item creation. Below are the examples how you can accomplish it:
    1. https://social.technet.microsoft.com/wiki/contents/articles/37203.sharepoint-online-customize-list-view-web-part-using-jslink.aspx
    2. https://sharepoint.stackexchange.com/questions/112506/sharepoint-2013-js-link-return-default-field-rendering/112576
    3. https://sharepointconnoisseur.blogspot.com/2015/11/use-jslink-to-auto-populate-sharepoint.html

    Ask me if you have other questions :)

    – Most3k Oct 27 '18 at 22:40