Home
Developing Analytics Applications
Actuate Data Analyzer - Filter Not Working
Migrateduser
<p>I have created the html to display a Actuate data object using the Data Analyzer in our local Application. I have a need to filter the data based on a column in thedata object called "AGENCY_CODE'". The data object displays fine using the Data Analyzer, until I reference the filter. The a blank screen.displays. The relevent code snippet is below. What am I doing wrong? Thanks in advance.</p>
<p> </p>
<p> </p>
<div> function loadAnalyzer(){</div>
<div> var pathName = "/Resources/DO-715-A_B_G.data";</div>
<div> ===>> var agencyfilter = new actuate.xtabanalyzer.Filter("AGENCY_CODE",<br>
actuate.xtabanalyzer.Filter.EQ, "AB00");</div>
<div> dataAnalyzer = new actuate.XTabAnalyzer('xtabContainer');</div>
<div> dataAnalyzer.setWidth(1500);</div>
<div> dataAnalyzer.setHeight(900); </div>
<div> ==>> dataAnalyzer.getCrosstab().setFilters(agencyfilter); </div>
<div> dataAnalyzer.setDatamartFile(pathName);</div>
<div> dataAnalyzer.submit();</div>
<div> }</div>
Find more posts tagged with
Comments
There are no comments yet