Pages

Thursday, 12 September 2013

How to remove the default decoration around the component in CQ

We can remove the default decoration around the component in CQ by setting a property cq:noDecoration to true to it.

No comments:

Post a Comment

Converting InputStream to String

    private String convertToString(InputStream inputStreamObj)             throws IOException {         if (inputStreamObj != null) {     ...