samriddhi chauhan

Greenhorn
+ Follow
since Sep 24, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by samriddhi chauhan

I have the same question. i wanted to pass some form value that the user selects to allow it
to be used in the produceDataset class. I used
<cewolf:producer id="chartViews" >
<cewolf:param name="aa" value='<%=(String)the value %>'/>
</cewolf:producer>

and in the 'produceDataset(Map params)' function I tried to get it as:
String aa = (String) params.get("aa");

But it just prints the value as null.
How can I pass values to this function. someone please help!!