Here's my problem:
When I write this in javascript it works
// OK:
alert('<s:property value="@my.package.utils.Util@getSomeInformation(1000)" />');
But when I try to set that value dynamically in the property tag, nothing is being executed.
// NOT OK:
var value = 1000;
alert('<s:property value="@my.package.utils.Util@getSomeInformation(' + value + ')" />');
Can someone please help me in this?