ashuanindian Posted September 12, 2014 Posted September 12, 2014 How to create custom hyperlinks in jasper reports from java itself.There is enough information in creating hyperlinks from design file but in my program I have nothing in design file, I am filling it from java like this.JRDesignTextField txtField = getJRDesignTextField( x, 0, width, 30, normalFont, new Color(255,255,255), new Color(0,0,0), JRTextElement.HORIZONTAL_ALIGN_LEFT, JRTextElement.VERTICAL_ALIGN_MIDDLE );JRDesignExpression exp = new JRDesignExpression();exp.setValueClass( String.class );exp.setText("$F{"+ displayName +"}");txtField.setBox(box);txtField.setExpression( exp );detailBand.setSplitAllowed(false);txtField.setPrintWhenDetailOverflows(true);txtField.setPrintRepeatedValues(true);txtField.setPrintInFirstWholeBand(true);detailBand.addElement(txtField); and similarly I want to create hyperlinks in these textfields along with the anchor tags.If any small demo program is there than It would be very benificial for me.Thanks
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now