Page 1 of 1

About Question enthuware.jwpv6.2.712 :

Posted: Sun Oct 09, 2011 11:54 am
by ETS User
In description:
paramvalues["val"]
should be:
paramValues["val"]

Re: About Question enthuware.jwpv6.2.712 :

Posted: Sun Oct 09, 2011 12:22 pm
by admin
You are right. This has been fixed.

thank you for your feedback!

Re: About Question enthuware.jwpv6.2.712 :

Posted: Mon Jul 02, 2012 10:45 am
by coorasse
It should be

Code: Select all

${paramValues.val[0]}, ${paramValues.val[1]}, and ${paramValues.val[2]}
instead of

Code: Select all

${paramValues.val[0]}, ${paramValues.val[1]}, and, ${paramValues.val[2]}
and

Code: Select all

${paramValues['val'][0]}, ${paramValues['val'][1]}, and ${paramValues['val'][2]}
instead of

Code: Select all

${paramValues['val'][0]}, ${paramValues['val'][1]}, and, ${paramValues['val'][2]}

Re: About Question enthuware.jwpv6.2.712 :

Posted: Wed Jul 04, 2012 10:34 am
by admin
You are right. The additional commas have now been removed. Thank you for your feedback!

Re: About Question enthuware.jwpv6.2.712 :

Posted: Wed Oct 31, 2012 3:02 am
by tori3852
Explanation for third option is
paramValues map does not contain any keys with the name of 1, 2 or 3. Its keys are the parameter names available in the request. Here, 'val' would be a key in paramValues.
. I believe it should be:
paramValues map does not contain any keys with the name of 0, 1 or 2. Its keys are the parameter names available in the request. Here, 'val' would be a key in paramValues.

Re: About Question enthuware.jwpv6.2.712 :

Posted: Wed Nov 07, 2012 8:11 pm
by admin
You are right. This has now been fixed.
Thank you for your feedback!