there is a basic misunderstanding:
inside the <CSP:WHILE...> block you are in HTML context
but you issue instead JavaScript >>>> which just prints it out.
To illustrate this see this simple example:
But changing to JS_context solved my simple demo withalert();
<csp:WHILECONDITION="resultSet.Next()"><!-- xValues.push(#(resultSet.Get("StatsDate"))#)
yValues.push(#(resultSet.Get("Value"))#) --><p>#(resultSet.Get("StatsDate"))#<br>#(resultSet.Get("Value"))#</p><scriptLANGUAGE="JavaScript">
alert(#(resultSet.Get("StatsDate"))#+'>>>'+#(resultSet.Get("Value"))#);
</script></csp:WHILE>- Log in to post comments
.png)