Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
How to access dataset of text element by Java?
bitisony
Hi all,
I want to access dataset row data binding of text element in event handler by Java.
Do you know how to implement it?
Find more posts tagged with
Comments
johnw
Not sure what you are trying to accomplish. If you want to access the binding, you will have to use the Onprepare event, and get to the design through the Report Context. But I have a feeling thats not what you are looking for. Can you clarify what you are trying to do?
bitisony
Hi Johnw,
I want to get data set row data that binding to text element,
for example, I get data set row data in script, as:
importPackage(Packages.java.util);
paramValues = new HashMap();
paramValues.put("start",this.getRowData().getColumnValue("start"));
paramValues.put("end",this.getRowData().getColumnValue("end"));
So my question is how to use java interface to get binding data set row data.
Thank you very much for your reply!