Click here to Skip to main content
15,884,099 members
Articles / Programming Languages / Javascript

Submit Webpage from OnSave button in MS CRM Dynamics JavaScript

Rate me:
Please Sign up or sign in to vote.
3.50/5 (2 votes)
8 Mar 2013CPOL2 min read 28.6K   7   1
This article willl help to submit a webpage using JavaScript in MS CRM Dynamics.

Introduction

This article will help you to submit a webpage (asp, aspx, etc.) file from the CRM Dynamics OnSave button click event with JavaScript. This article will take the Account entity as an example and assumes that the webpage is already available to access from JavaScript.

Using the Code

The below steps need to be followed to customize the CRM Dynamics Account form.

  1. Select the form to customize and submit the webpage. This can be done by stepping through Settings->Customization->Account->Forms and Views-> Form.
  2. Add the IFrame to the form.
  3. Select the IFrame and click Change Properties.
  4. Enter the name and URL of the IFrame. URL is the path of the file where the webpage resides, e.g.: http://localhost:5555/sample.aspx.
  5. Check “Pass Object type****” if you would like to pass the form ObjectId as a parameter to the webpage. The form ObjectId is nothing but the AccountId of the Account entity which is selected from then Accounts screen.
  6. CRMSubmit/4.GIF CRMSubmit/3.GIF

  7. Now select Form Properties and select the Events tab (by default this tab will be shown).
  8. Select OnSave from the list and press the Edit button to write the JavaScript.
  9. On opening the new window select the “Event is enabled” checkbox. This will enable the CRM form to execute the JavaScript.
  10. Write the following JavaScript in the edit box to submit the form:
  11. JavaScript
    var iframe = document.getElementById('IFRAME_AddressList');
    var iframeDoc = iframe.Document;
    var iframeForm = iframeDoc.getElementById('frmAddress');
    iframeForm.target = '_self';
    iframeForm.method = 'post';
    iframeForm.action ='http://localhost:5555/sample.aspx? Id='+crmForm.ObjectId;
    iframeForm.submit();

    Here IFRAME_AddressList is the name of the iFrame. frmAddress is the form name in the ASPX page. Since the submission is to the same page the target is “_self”. crmForm.ObjectId is passed as a query string to get the AccountID in the ASPX page. (Since we are overriding the CRM Dynamics form submission, the query string needs to be passed explicitly.)

  12. Now close the JavaScript window by pressing the OK button and close the form properties window.
  13. Save and Close the form at the top left corner of the Form.
  14. Now publish the form with the menu Actions->Publish.

I hope this article will help you to submit a webpage from the CRM Dynamics form.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United Kingdom United Kingdom
Completed Masters in Computer Applications.

Comments and Discussions

 
GeneralForm submit to server. Pin
Ajay Kale New18-Oct-10 20:42
Ajay Kale New18-Oct-10 20:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.