Announcements
I am wondering how I would go about creating a script that would show a default value in a field, but also allow the user to change that value if need be.
Thank you.
*This post is locked for comments
Hi USA80,
please use the following code:
function OnLoad() { var defaultvalue = "My default value"; var attrvalue = Xrm.Page.getAttribute("new_myattribute").getValue(); if (attrvalue == null) Xrm.Page.getAttribute("new_myattribute").setValue(defaultvalue); }
Let me know if you solve.
If you found the answer helpful, please mark as Verified
Join my network on LinkedIn Follow me on Twitter
Thank You & Best Regards
Francesco Picchi
Microsoft Dynamics CRM Consultant, Bologna, ITALY
Independent Contractor
http://www.francescopicchi.com
Thank you, this worked.
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.
Congratulations to our community stars!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
RichardM 1