Limit pathfield to 1 inside a multifield | Community
Skip to main content
New Participant
June 8, 2016
Solved

Limit pathfield to 1 inside a multifield

  • June 8, 2016
  • 4 replies
  • 1753 views

Hi All,

In my dialog.xml, we have the below :

 <multi
                        jcr:primaryType="cq:Widget"
                        fieldLabel="Page Path"
                        name="./relatedPath"
                        xtype="multifield">
                        <fieldConfig
                            jcr:primaryType="nt:unstructured"
                            xtype="pathfield"/>
                    </multi>

#1]We should be able to restrict the pathfield we can choose to 1 here. 

Any reference/snippet/thoughts on this will be really helpful.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by leeasling

if you only want to allow 1 path to be chosen, don't put the path field in a mutlfield.  Just have it be a pathfield.

<relatedPage jcr:primaryType="cq:Widget" fieldLabel="Page Path" name="./relatedPath" xtype="pathfield"> </relatedPage>

No need to over complicate.

4 replies

Lokesh_Shivalingaiah
New Participant
June 9, 2016

I agree with @leaasling. Keep the path field out of the multifield so you dont have to put the extra 'limitation' to it.

leeaslingAccepted solution
New Participant
June 9, 2016

if you only want to allow 1 path to be chosen, don't put the path field in a mutlfield.  Just have it be a pathfield.

<relatedPage jcr:primaryType="cq:Widget" fieldLabel="Page Path" name="./relatedPath" xtype="pathfield"> </relatedPage>

No need to over complicate.

askdctmAuthor
New Participant
June 9, 2016
New Participant
June 8, 2016

I am not clear in what you are looking for. Seem you want to know how to restrict a path field values where the path field is used in a multi-field control.