| Issue 79: | Add script evaluation on every attributes | |
| 1 person starred this issue and may be notified of changes. | Back to list |
As requested in Comment by rkapa2006, in [useScriptFeature] we have to implement possibility to evaluate a script to set every attibutes. Below an example
<script>
function getButtonLabel() {
return "action"
}
</script>
...... ...... <Button name="tb" id="toggleButton" text="${script:getButtonLabel()}" action="onCLick" /> ..... .....
Feb 22, 2012
Project Member
#1
bartolom...@gmail.com
Status:
Started
Feb 23, 2012
add support for script evaluation in two different way:
script:<attributeName>="<functionName>" ==> use result of script function <functionName>()
script:<attributeName>="${<script code>}" ==> use result of script code evaluation
added support of script evaluation for the following attributes' types
* Action
* Border
* Color
* Dimension
* Font
* Image
* ImageIcon
* Insets
* KeyStroke
* Locale
* Point
* Rectangle
* String
* primitive types
Apr 23, 2013
(No comment was entered for this change.)
Labels:
-Milestone-Release2.6 Milestone-Release2.6.2
Apr 23, 2013
(No comment was entered for this change.)
Status:
Accepted
Apr 23, 2013
(No comment was entered for this change.)
Labels:
-Milestone-Release2.6.2 Milestone-Release2.6
May 30, 2013
deployed in version 2.6.20130530
Status:
Fixed
|