- Added support for labeled ComboBox to Parameter.
- e.g. @parameter([[10,”low”],[50,”medium”],[100,”high”]]. This would show high, medium and low as text in comboBox and on selecting any one of them data associated with them will be injected into AST.
- It also support @parameter([[“large”,”XL”],[“medium”,”M’]]) or@parameter([[1,10],[2,20]]).
- Added support for to set increment step size for spinBox widget.
- e.g. @parameter(20) a=4; then on incrementing the spinBox it will have value 24.
- Added support for maximum length of text that could be entered in lineField.
- e.g. @parameter(20)a=”hello”. Then we can type at max 20 characters in lineField.
- But as the syntax to be supported is not fixed. so, about syntax could change in future.
- Made the table regarding input widget that we will support with different controls for each widget.
- For different combination of Type of value and input widget.
- input widget and controls.
- present variables present in ParameterObject used by which input widget.
And its going on….