Answered by:
Refresh CRM Form using javascript

Question
-
Hi,
How can i refresh crm form using javascript
Wednesday, April 11, 2012 10:55 AM
Answers
-
Hello,
Try to use following code:
Crm 4.0 window.location.reload(true);
Crm 2011 window.parent.location.reload(true);
Microsoft CRM Freelancer
My blog (english)
Мой блог (русскоязычный)
- Proposed as answer by Andrii ButenkoMVP, Moderator Wednesday, April 11, 2012 11:05 AM
- Marked as answer by Neil BensonMVP, Moderator Thursday, July 25, 2013 7:12 PM
Wednesday, April 11, 2012 11:05 AMModerator
All replies
-
Hi,
Three helpful functions:
to save entity record form and close
//Xrm.Page.data.entity.save("saveandclose");
To refresh the page
//window.location.reload(true);
To close the entity record form
//Xrm.Page.ui.close();
I hope this helps. If my response answered your question, please mark the response as an answer and also vote as helpful.
Ashish Mahajan, CRM Developer, CSG (Melbourne)
My Personal Website: http://www.ashishmahajan.com
My Blogs: http://ashishmahajancrm.blogspot.com.au and http://ashishmahajancrm.wordpress.com
My Youtube Channel: http://www.youtube.com/user/ashishmahajanmscrmMy Linkedin: - Proposed as answer by Ashish Mahajan Technical Architect, Writer Wednesday, April 11, 2012 11:03 AM
Wednesday, April 11, 2012 11:03 AM -
Hello,
Try to use following code:
Crm 4.0 window.location.reload(true);
Crm 2011 window.parent.location.reload(true);
Microsoft CRM Freelancer
My blog (english)
Мой блог (русскоязычный)
- Proposed as answer by Andrii ButenkoMVP, Moderator Wednesday, April 11, 2012 11:05 AM
- Marked as answer by Neil BensonMVP, Moderator Thursday, July 25, 2013 7:12 PM
Wednesday, April 11, 2012 11:05 AMModerator -
Hi,
If any of the responses answered your question and you are satisfied, please mark the response as an answer and vote as helpful. This will help others to search on similar problems.
Thanks in advance.Ashish Mahajan, CRM Developer, CSG (Melbourne)
My Personal Website: http://www.ashishmahajan.com
My Blogs: http://ashishmahajancrm.blogspot.com.au and http://ashishmahajancrm.wordpress.com
My Youtube Channel: http://www.youtube.com/user/ashishmahajanmscrmMy Linkedin: Wednesday, April 11, 2012 11:16 PM -
Thanks Andrii!
This was really helpful to me.. :)
Thursday, July 25, 2013 7:03 AM