Monday 4 December 2017

Tag Field Vs Tags Picker

It is always recommended to use tag field (/libs/cq/gui/components/coral/common/form/tagfield) over tag picker, since the tagpicker is deprecated from AEM 6.3. The tagfield can be put into validation for a mandatory field by simply adding a property required(Boolean) true.

The ootb component is very easy to be overlayed and hence customize its functionality. Render.jsp is responsible for the logic and rendering(visual) of the tags.

extraClientlibs Usage

The purpose of property "extraClientlibs" is to selectively load client library for a dialog. This prevents the unnecessary load o...