Jump to content
We've recently updated our Privacy Statement, available here ×

jpatel_5

Members
  • Posts

    3
  • Joined

  • Last visited

jpatel_5's Achievements

  1. You can update your jasperreports 6.4.1 dependency/JAR file to jasperreports 6.11.0 and it will work.
  2. I found an issue with third-party plugin. I fixed that and it is working now. That plugin was using Jasper Reports version 6.4.1. However, I updated my Jasper Studio to 6.11.0. Between these two updates, "Stretch with Overflow" property got changed to "textAdjust", which was causing the issue. I updated jasperreports-6.4.1.jar to jasperreports-6.11.0.jar.
  3. I have recently updated Jaspersoft studio to version 6.11.0. Before this update, the textfield used to have a property "Stretch with Overflow" and the code used to look like this: <textField isStretchWithOverflow="true"> <reportElement x="113" y="0" width="438" height="14" uuid="fe8b4da9-8cf0-468a-813e-0f1f6b60dfc4"> <property name="com.jaspersoft.studio.unit.height" value="px"/> </reportElement> <textFieldExpression><![CDATA[$P{itemTypes}]]></textFieldExpression> </textField> The text field was nicely wrapping the text if the text is longer than the width of the field. However, now, I can't see this property and saw "Text Adjust" property with a dropdown and selected value is "stretchHeight". The code now looks like this: <textField textAdjust="StretchHeight"> <reportElement x="113" y="0" width="438" height="14" uuid="fe8b4da9-8cf0-468a-813e-0f1f6b60dfc4"> <property name="com.jaspersoft.studio.unit.height" value="px"/> </reportElement> <textFieldExpression><![CDATA[$P{itemTypes}]]></textFieldExpression> </textField> The text field doesn't wrap the text anymore and the text is cutting off if it's longer than the width of the field. Do I need to set any other property for this?
×
×
  • Create New...