Foros de discusión

Multi select option in Custom fields

thumbnail
Raveen Raj, modificado hace 9 años.

Multi select option in Custom fields

New Member Mensajes: 9 Fecha de incorporación: 4/12/14 Mensajes recientes
Hi,
I need to create a custom fields with multi select option(multi select in dropdown).Please let me know how to create the same.
thumbnail
Robin Nagpal, modificado hace 9 años.

RE: Multi select option in Custom fields

Junior Member Mensajes: 44 Fecha de incorporación: 18/11/14 Mensajes recientes
<aui:select id="choices" name="choices" multiple="true">
<option value="choice1">choice1</option>
<option value="choice2">choice2</option>
<option value="choice3">choice3</option>
</aui:select>
thumbnail
Suresh Nimmakayala, modificado hace 9 años.

RE: Multi select option in Custom fields

Liferay Master Mensajes: 690 Fecha de incorporación: 18/08/04 Mensajes recientes
it works


try

choicesSize is the count how many you are showing in the list if you want to extend dynamically

<aui:select label="choices" name="choices" id="choices" size="<%=choicesSize%>" multiple="true">
<aui:option value="choice1">choice1</aui:option>
<aui:option value="choice2">choice2</aui:option>
<aui:option value="choice3">choice3</aui:option>
</aui:select>
thumbnail
Tanweer Ahmed ., modificado hace 1 año.

RE: Multi select option in Custom fields

Expert Mensajes: 322 Fecha de incorporación: 11/03/10 Mensajes recientes
Hi Raveen,

The current version 6.2 does not support Custom Field with multi select option.Only single select values from the dropdown is supported.

Regards,
Tanweer.
thumbnail
Raveen Raj, modificado hace 9 años.

RE: Multi select option in Custom fields

New Member Mensajes: 9 Fecha de incorporación: 4/12/14 Mensajes recientes
Hi,

Thanks.. is that possible to customize the custom fields option to add MULTI SELECT DROPDOWN by creating hook project? if so please suggest me
thumbnail
Tanweer Ahmed ., modificado hace 1 año.

RE: Multi select option in Custom fields

Expert Mensajes: 322 Fecha de incorporación: 11/03/10 Mensajes recientes
Hi Raveen,

It might work.You can create a hook for
/portal-src/portal-web/docroot/html/taglib/ui/custom_attribute/page.jsp


And try adding multiple="true" for the select element for the block
type == ExpandoColumnConstants.STRING_ARRAY &amp;&amp; propertyDisplayType.equals(ExpandoColumnConstants.PROPERTY_DISPLAY_TYPE_SELECTION_LIST)


Regards,
Tanweer.
Miha Valencic, modificado hace 8 años.

RE: Multi select option in Custom fields

New Member Mensajes: 7 Fecha de incorporación: 2/09/15 Mensajes recientes
Hi!

Chosing "Group of text values" and choosing a display style of "Checkboxes" enables us to select more than one entry, which is sufficient.

Regards,
Miha.
Jose Antonio Campos Segura, modificado hace 6 años.

RE: Multi select option in Custom fields

Junior Member Mensajes: 45 Fecha de incorporación: 30/09/17 Mensajes recientes
Can you provide an example?

Thanks.