I would like to disable "autocomplete" feature in AEM pathfield. Anyone knows how to do that, Thanks
<link
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/pathfield"
fieldLabel="Link"
fieldDescription="Please add a link"
rootPath="/content/"
name="./link"
validation="data-valid-internal-external"
autocomplete="false"
required="{Boolean}true"/>
Solved! Go to Solution.
Check below file which has the code for auto suggestion and see how can you overwrite it to achieve your requirement
/libs/granite/ui/components/coral/foundation/form/pathfield/render.jsp
Views
Replies
Total Likes
Hi,
If you don't want to use autocompleted you can use textfield instead of path field.
Pathfield internally uses autocompleted to create list if you want to make changes in OOTB functionality, overlay is the solution.
There is no property called autocomplete="false".
PathField — Granite UI 1.0 documentation
Hi Arun Patidar,
I know. But based on the requirement, that field's using to put an internal or an external link. So, cannot change to textfield.
Can you give me more detail (the syntax function) on the overlay solution? it's rendering by coralui3 js. Thanks
Views
Replies
Total Likes
Yes, you can put internal/external links in text field also if you don't want selection and autocompleted list.
Views
Replies
Total Likes
Agree with Arun - In that reference doc - i am not seeing an auto complete field. Therefore - looks like there is no way using props in the dialog that you can turn this off.
You cannot use props on granite types that do not exist.
Views
Replies
Total Likes
Check below file which has the code for auto suggestion and see how can you overwrite it to achieve your requirement
/libs/granite/ui/components/coral/foundation/form/pathfield/render.jsp
Views
Replies
Total Likes