Issue 34: running filter from outside control
Status:  Invalid
Owner: ----
Closed:  Oct 2007
Reported by mywireor...@gmail.com, Oct 15, 2007
What steps will reproduce the problem?
1. Create JMESA table
2. Use javascript to set values in the filter
3. Run Invokeaction('tag') from javascript.

What is the expected output? What do you see instead?
Filters are populated and results are displayed. So filter are populated
but results are not displayed.

Manually it works perfectly fine.

What version of the product are you using? On what operating system?
2.2.1

Please provide any additional information below.

Following is the javascript I'm using which is activated on selecting value
on a dropdown. Values are passed in following fashion,
"filterfieldname::value::filterfieldname1:value1.". I've modified HTML
renderer to add id on div to find out specific filter div. 



function populateExeFilter()
		strParams = document.getElementById("reqType").value;
		alert(strParams);
		param=strParams.split("::");
		var part_num=0;
		while (part_num < param.length)
		{
		  document.getElementById(param[part_num]).innerHTML = param[part_num+1]
+'<img alt="filter" src="/tms/images/table/droplistHandle.gif"/>';
		  part_num+=2;
		}
onInvokeAction('tag')
} 
Oct 15, 2007
#1 extremec...@gmail.com
I am not quite sure what your question is? Are you asking how to pass filter values
to the JavaScript Limit so that it gets passed to the controller like the current
filters do?
Oct 23, 2007
#2 extremec...@gmail.com
I am going to close this until I get more clarification.
Status: Invalid