Groovyスクリプトを記述します。スクリプトが返した配列を選択肢として利用できます。


スクリプトの例:

Example1----------------------------------------------------------------------------- // 固定の選択肢を返す return ["choice1", "choice2", "choice3"]; Example2----------------------------------------------------------------------------- // 1,2,3,...,10 を選択肢として表示 return 1..10; Example3----------------------------------------------------------------------------- // 過去一週間の日付 return (6..0).collect{new Date().plus(-it).format("yyyy-MM-dd")};