Hi all!
I'm making an HTML view called 'Test' within 2 embeded HTML views. Both embedded HTML views are the same HTML view, but receiving diferent parameter values to print.
See the code below:
htmlpage Test()
<%{
<div elName='zc-component' viewLinkName='HTML_view_A' params='message=FirstMessage'>Loading View...</div>
<div elName='zc-component' viewLinkName='HTML_view_A' params='message=SecondMessage'>Loading View...</div>
<%}%>
And
Ok, so, when I execute the HTML view called 'Test', the output is surprising!
Note that there are two callings to HTML_view_A with different values of parameter 'message', but Test always prints sometimes:
FirstMessage
FirstMessage
or sometimes
SecondMessage
and never
FirstMessage
SecondMessage
Any help would be welcome! Thanks in advance.