JSTL single quotes embedded in double quotes issue
I am using JSTL to render the following radio button:
<input type="radio"
value="${nextObject.garbledID}"
onclick="executeSelection('${nextObject.garbledID}')" />
The radio button is rendered correctly with the resolved value of nextObject.garbledID for onclick on Windows/Linux. On AIX, the value of
nextObject.garbledID is not being resolved for the onclick attribute (it is being resolved for value attribute). I think the issue is with the single quotes within double quotes. Does anyone know why the problem happens only on AIX? My app server is Websphere 6.0. There are quite a few places in our code where we embed single quotes in double quotes so a generic fix would be great.
thanks,
Kumar

