You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have a simple behavior initializer script that is making a decision based upon the value of a Date Picker field value. The name of the field is "Delivery Planned" and is of type Date Picker.
The form shows the value in the field being 12/13/2017.
The following lines of code:
def l_FormFieldDeliveryPlanned = getFieldByName("Delivery Planned");
String l_sDeliveryPlanned = l_FormFieldDeliveryPlanned.getValue(); //TODO: This is always getting a null even when the form has a value!
a_Logger.debug("Delivery Planned is currently [" + l_sDeliveryPlanned + "]");
result in the following line in the log file:
Delivery Planned is currently [null]
What am I doing wrong to get the value in this field. What object type is returned from the .getValue() call on a Date Picker field type?