I am trying out ERJQMobile (instead of Ajax.framework) because it uses jQuery.
(Hoping that it won’t clash with other jQuery libraries as much as the Ajax ones does)
<wo:genericContainer elementName="$elementName" otherTagString="$otherTagString">
<!-- _ju:<wo:WOString value = "$_javascript_ElementID" /> -->
<wo:content />
<!-- _ju:<wo:WOString value = "$_javascript_ElementID" /> -->
</wo:genericContainer>
-------
In the example (jQueryMobileExample), it works great and
<wo:ERQMAjaxUpdateContainer id = "AUCShowValues">
renders as:
<div id="AUCShowValues">
<!-- _ju:AUCShowValues —>
..
.. etc
In my app it throw [ lookup of unknown key: ‘value’ ]
The problem (in my app) appears to be that put a WOstring in a comment (with an WOGNL $ binding), it fails to work.
I demonstrated this by trying:
<!-- <wo:WOString value="$now" /> —>
and the same issue occurs (lookup of unknown key: ‘value')
Notes that the following do work as expected:
<wo:WOString value="$now" />
<!-- <wo:WOString value="hello" /> —>
There must be some setting I have missed, but I cannot see any obvious differences between the ‘example’ and my code.
I have tried changing -WOIncludeCommentsInResponse, but that didn’t make any difference.
Any ideas?
Thanks,
Mark Gowdy