Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To set the value of a date custom field simply set the custom field to equal a date
string or a date variable variable.This script assumes that it is

Getting Values

Insert excerpt
Date Fields - Getting Values
Date Fields - Getting Values
nopaneltrue

Setting Values

Insert excerpt
Date Fields - Setting Values
Date Fields - Setting Values
nopaneltrue

NOTE: getting the value using the customfield id is not the best practice when
writing SIL scripts. See the Working with Custom Fields example for more
information on the best practices.

NOTE: These scripts assumes that they are running in the context of an issue. Like in a
workflow script or listener for example. If you would like to test

...

these scripts
from the SIL Manager, add an issue key to test with under the Run Configuration
setting (Run > Run Configuration > Context)

...

Code Block
//------GETTING FIELD VALUE-------
date myDate = customfield_12345; //<-- update this customfield id
runnerLog(myDate); //displays results in the editor console panel

NOTE: getting the value using the customfield id is not the best practice when
writing SIL scripts. See the workingWithCustomfields.sil example for more
information on the best practices.