I have a javascript variable say,
var a ='2013-01-03'
I want to access this variable inside my scriptlet. i.e.] I have a map that contains my data.
I want to fetch the value of the map corresponding to the key='2013-01-03' that is in javascript variable 'a'.
How can i use like following in my scriptlet.?
map.get(a);
I know the scriptlets will execute first even then without reloading I want to access the variable a inside my scriptlet. Can any one help me solve this problem.?