Difference between revisions of "Post Selection JavaScript"
From AgileApps Support Wiki
imported>Aeric m (Text replace - 'Designer > Objects' to 'File:GearIcon.png > Customization > Objects') |
imported>Aeric |
||
Line 17: | Line 17: | ||
:* Cases | :* Cases | ||
:* Users | :* Users | ||
:* Projects | :* Projects | ||
Revision as of 00:31, 16 May 2013
Lookup fields have the additional ability for validations using JavaScript.
- Compare to Form Scripting and Field Scripting
Post Selection JavaScript is available in:
- Custom Objects
- System Objects:
- Accounts
- Documents
- Templates
- Contacts
- Prospects
- Opportunities
- Price Books
- Products
- Contracts
- Cases
- Users
- Projects
Editing Lookup Scripts
Follow these steps to add or change scripting for a lookup field:
- Click > Customization > Objects > {object} > Fields
- Click the name of the Lookup field.
- Enter or change the code in Post Selection JavaScript.
- Click the Save button.
Writing Lookup Scripts
In the JavaScript code, the following variables are available:
- id: The identifier of the selected record
- name: The label of the selected record
- window.opener.document.mainForm: The opener form and its fields
This example displays the label of the selected record.
alert("You have selected record: " + name);
Learn More
- Field Name and Field Value syntax
- Use AJAX and REST to communicate with the platform in JavaScript code.
- Global JavaScript Variables
- Accessing Additional Lookup Variables in a Form