Difference between revisions of "Changing the Default End Date"

From SmartWiki
Jump to: navigation, search
Line 20: Line 20:
 
* The function is called in the last line of the script.  
 
* The function is called in the last line of the script.  
 
* You could also use this approach to set the end date to say the start date + 60 days or set other field values.
 
* You could also use this approach to set the end date to say the start date + 60 days or set other field values.
 +
 +
 +
[[Category:Universal Tracking Application]][[Category:Applications]]

Revision as of 15:23, 10 September 2007

By default within the Universal Tracking Application the end date for a level 1 item is set to the start data. In many circumstances you may wish to control the level 1 end date. The following technique can be used:

1. Add a new custom field to the UTA custom field list. 2. Set the field type to Special - Browser Script.

This field type is not displayed on the page but the script associated with the field will be added to the webpage and the script can be called and executed.

3. Add the following Java script to the JavaScript window.

 function changeEndDate() {
   var frm=document.form1;
   if (frm.opportunityid.value==0)
     frm.enddate.value=
    }
    changeEndDate();


  • This function looks at the opportunityid value which is set to 0 for a level 1 entity before it is saved.
  • If the level 1 entity is new (value == 0) then the end date value is set to blank.
  • The function is called in the last line of the script.
  • You could also use this approach to set the end date to say the start date + 60 days or set other field values.