Difference between revisions of "Field Scripts"
imported>Aeric |
imported>Aeric |
||
Line 47: | Line 47: | ||
=====Check Approval Status===== | =====Check Approval Status===== | ||
When a user changes an order, if a discount is given, make sure that <tt>approval_required</tt> is checked. | When a user changes an order, if a discount is given, make sure that <tt>approval_required</tt> is checked. | ||
: | :<syntaxhighlight lang="javascript" enclose="div"> | ||
< | |||
if (_sdForm.discount.value != '0') { | if (_sdForm.discount.value != '0') { | ||
setCheckboxState(_sdForm, "approval_required", true); | setCheckboxState(_sdForm, "approval_required", true); | ||
} | } | ||
</ | </syntaxhighlight> | ||
=====Capitalize a Name===== | =====Capitalize a Name===== | ||
When a user enters a first name, capitalize it automatically: | When a user enters a first name, capitalize it automatically: | ||
: | :<syntaxhighlight lang="javascript" enclose="div"> | ||
<pre> | <pre> | ||
var upperName = _sdForm.first_name.value.toUpperCase(); | var upperName = _sdForm.first_name.value.toUpperCase(); | ||
Line 63: | Line 61: | ||
// The line could also be written as: | // The line could also be written as: | ||
// obj.value = obj.value.toUpperCase(); | // obj.value = obj.value.toUpperCase(); | ||
</ | </syntaxhighlight> | ||
=====Display an Alert with Multiple Values===== | =====Display an Alert with Multiple Values===== | ||
Display an alert dialog showing the values selected from multiple checkboxes. | Display an alert dialog showing the values selected from multiple checkboxes. | ||
: | :<syntaxhighlight lang="javascript" enclose="div"> | ||
< | |||
var values = getMultiCheckBoxValue(_sdForm, "assets", 0); | var values = getMultiCheckBoxValue(_sdForm, "assets", 0); | ||
// Returns a list. For example: ["Laptop", "Cellphone"] | // Returns a list. For example: ["Laptop", "Cellphone"] | ||
alert( "Multi Check Box Values are: " + values); | alert( "Multi Check Box Values are: " + values); | ||
</ | </syntaxhighlight> | ||
=====Copy a Field in the Current Record===== | =====Copy a Field in the Current Record===== | ||
When a user changes the <tt>job_knowledge_notes</tt> field, copy the new value to the <tt>dependability_notes</tt> field. | When a user changes the <tt>job_knowledge_notes</tt> field, copy the new value to the <tt>dependability_notes</tt> field. | ||
: | :<syntaxhighlight lang="javascript" enclose="div"> | ||
< | |||
var note = _sdForm.job_knowledge_notes.value; | var note = _sdForm.job_knowledge_notes.value; | ||
setTextFieldValue(_sdForm, "dependability_notes", note); | setTextFieldValue(_sdForm, "dependability_notes", note); | ||
</ | </syntaxhighlight> | ||
=====Copy a Field from Another Record===== | =====Copy a Field from Another Record===== | ||
Line 94: | Line 87: | ||
=====Conditional Change to a Value===== | =====Conditional Change to a Value===== | ||
Change the value of a text area based on a variable. | Change the value of a text area based on a variable. | ||
: | :<syntaxhighlight lang="javascript" enclose="div"> | ||
< | |||
if(obj.value == "Record1") { | if(obj.value == "Record1") { | ||
setTextFieldValue(_sdForm, "description", "First Record") | setTextFieldValue(_sdForm, "description", "First Record") | ||
Line 105: | Line 97: | ||
setTextFieldValue(_sdForm, "description", "Not first or second record") | setTextFieldValue(_sdForm, "description", "Not first or second record") | ||
} | } | ||
</ | </syntaxhighlight> | ||
{{:Change Checkbox Value Script}} | {{:Change Checkbox Value Script}} | ||
Line 112: | Line 103: | ||
==== On Focus Example ==== | ==== On Focus Example ==== | ||
When a user moves the focus to the account name field, remind the user to enter the name capitalized. | When a user moves the focus to the account name field, remind the user to enter the name capitalized. | ||
: | :<syntaxhighlight lang="javascript" enclose="div"> | ||
< | |||
alert("Please enter the account name in all caps"); | alert("Please enter the account name in all caps"); | ||
</ | </syntaxhighlight> | ||
==== Grid Field Scripting ==== | ==== Grid Field Scripting ==== | ||
Line 132: | Line 121: | ||
For example, assume that you have a grid with these field names: full_name, first_name, and last_name. You can create references to the fundamental fields with the statements below: | For example, assume that you have a grid with these field names: full_name, first_name, and last_name. You can create references to the fundamental fields with the statements below: | ||
: | :<syntaxhighlight lang="javascript" enclose="div"> | ||
< | |||
var firstname = eval('_sdForm.'+grid_section+'first_name'); | var firstname = eval('_sdForm.'+grid_section+'first_name'); | ||
var lastname = eval('_sdForm.'+grid_section+'last_name'); | var lastname = eval('_sdForm.'+grid_section+'last_name'); | ||
</ | </syntaxhighlight> | ||
You can then update the full_name field automatically in an On Change event script for the first name or last name field with this code: | You can then update the full_name field automatically in an On Change event script for the first name or last name field with this code: | ||
: | :<syntaxhighlight lang="javascript" enclose="div"> | ||
< | |||
var fullname = firstname.value + ' ' + lastname.value; | var fullname = firstname.value + ' ' + lastname.value; | ||
setTextFieldValue(_sdForm, "full_name", fullname); | setTextFieldValue(_sdForm, "full_name", fullname); | ||
</ | </syntaxhighlight> | ||
===Learn More=== | ===Learn More=== |
Revision as of 22:27, 21 May 2014
About Field Scripts
Field scripts let you execute JavaScript when a field in a Form gets focus or its value changes.
JavaScript code can be run at these field-level events:
- On Change - This event happens when a user enters a new value in a field. At this event you can change other fields based on the value a user just entered or change the formatting of the value (such as for a telephone number).
- On Focus - This event happens when a user moves the focus to a field. At this event you can remind the user what to enter or temporarily change the appearance of the field (set as setting the background color).
See Field Scripting Variables for information on variable syntax.
- Compare to Form Scripts and Post Selection JavaScript
You can add On Change or On Focus event scripts to any field except the following:
- Auto Number
- Custom Control
- File field
- Formula
- Image field
- Lookup
- Multi object Lookup
- Rich Text Area
Working with Field Scripts
Editing Field Scripts
Follow these steps to add or change event scripting for a field:
- Click the script icon () next to a field in the layout
- Enter or change the JavaScript in Field On Change Script and/or Field On Focus Script
- Click the Save button
Writing JavaScript
Using JavaScript, you can
- Reference Fields in the current form.
- Use AJAX and REST to communicate with the platform.
You can also use the implicit variable obj to refer to the field where the most recent event occurred.
These examples show using the implicit variable obj with these properties:
alert("Selected field's name: " + obj.name); alert("Selected field's value: " + obj.value);
On Change Examples
Check Approval Status
When a user changes an order, if a discount is given, make sure that approval_required is checked.
- <syntaxhighlight lang="javascript" enclose="div">
if (_sdForm.discount.value != '0') {
setCheckboxState(_sdForm, "approval_required", true);
} </syntaxhighlight>
Capitalize a Name
When a user enters a first name, capitalize it automatically:
- <syntaxhighlight lang="javascript" enclose="div">
var upperName = _sdForm.first_name.value.toUpperCase(); setTextFieldValue(_sdForm, "first_name", upperName); // The line could also be written as: // obj.value = obj.value.toUpperCase(); </syntaxhighlight>Display an Alert with Multiple Values
Display an alert dialog showing the values selected from multiple checkboxes. :<syntaxhighlight lang="javascript" enclose="div"> var values = getMultiCheckBoxValue(_sdForm, "assets", 0); // Returns a list. For example: ["Laptop", "Cellphone"] alert( "Multi Check Box Values are: " + values); </syntaxhighlight>Copy a Field in the Current Record
When a user changes the job_knowledge_notes field, copy the new value to the dependability_notes field. :<syntaxhighlight lang="javascript" enclose="div"> var note = _sdForm.job_knowledge_notes.value; setTextFieldValue(_sdForm, "dependability_notes", note); </syntaxhighlight>Copy a Field from Another Record
This code accesses the record targeted by a Lookup, retrieves a field value, and places it into the current form. __TBD__ :<syntaxhighlight lang="javascript" enclose="div"> </syntaxhighlight>Conditional Change to a Value
Change the value of a text area based on a variable. :<syntaxhighlight lang="javascript" enclose="div"> if(obj.value == "Record1") { setTextFieldValue(_sdForm, "description", "First Record") } if(obj.value == "Record2") { setTextFieldValue(_sdForm, "description", "Second Record") } else { setTextFieldValue(_sdForm, "description", "Not first or second record") } </syntaxhighlight> Change the value of a checkbox field to true when the request amount is large enough. :<syntaxhighlight lang="javascript" enclose="div"> if(_sdForm[0].request_amount.value > 10000) { setCheckboxState(_sdForm, "approval_required", true); } </syntaxhighlight>On Focus Example
When a user moves the focus to the account name field, remind the user to enter the name capitalized. :<syntaxhighlight lang="javascript" enclose="div"> alert("Please enter the account name in all caps"); </syntaxhighlight>Grid Field Scripting
You can run JavaScript code for On Change and On Focus events in grid fields. Follow these steps to add event scripting to a grid field: # Click the script icon () in the column header of a field in a grid. # Enter the JavaScript in On Change Script and/or On Focus Script. # Click the Save button. You can refer to these implicit variables in event scripts for grid fields: * grid_section: current grid name used as a prefix for field names * grid_section_row_id: current row identifier For example, assume that you have a grid with these field names: full_name, first_name, and last_name. You can create references to the fundamental fields with the statements below: :<syntaxhighlight lang="javascript" enclose="div"> var firstname = eval('_sdForm.'+grid_section+'first_name'); var lastname = eval('_sdForm.'+grid_section+'last_name'); </syntaxhighlight> You can then update the full_name field automatically in an On Change event script for the first name or last name field with this code: :<syntaxhighlight lang="javascript" enclose="div"> var fullname = firstname.value + ' ' + lastname.value; setTextFieldValue(_sdForm, "full_name", fullname); </syntaxhighlight>Learn More
:* Referencing Form Fields in JavaScript :* 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