-
Type:
Bug
-
Resolution: Not A Defect
-
Priority:
Blocker
-
Component/s: extended-choice-parameter-plugin
-
None
-
Environment:Extended Choice Parameter Plug-In - Version346.vd87693c5a_86c
Jenkins - 2.341
Hello,Â
I am facing an issue with variable bindings as startvalues for JSONEditor options in Extended Choice Parameter Plugin. It is not possible to use the variable bindings when I updated from version 0.82. We changed import of library from Boon.FromJson to net.sf.json.* but it is not still works.
Thank you in advance for any help.
Â
import net.sf.json.* def jsonEditorOptions = JSONObject.fromObject(/{ Â Â Â Â disable_edit_json: true, Â Â Â Â disable_properties: true, Â Â Â Â no_additional_properties: true, Â Â Â Â disable_collapse: false, Â Â Â Â disable_array_add: false, Â Â Â Â disable_array_delete: false, Â Â Â Â disable_array_reorder: true, Â Â Â Â theme: "bootstrap3", Â Â Â Â iconlib:"fontawesome5", Â Â Â Â "schema":{ Â "title": "Projects", Â "type": "array", Â "format":"tabs", Â "items": { "title":"ProjectTest", "type":"object", "properties": { "Project": { "title": "Path", "type": "boolean", "propertyOrder" : 1 } } Â } },startval: {${bindStartValues}}}/); Â return jsonEditorOptions;