Skip to content

Reference items from another Kontent project with this item selector custom element for Kentico Kontent

License

Notifications You must be signed in to change notification settings

hzik/kontent-custom-element-item-selector

Repository files navigation

Item Selector

This is a custom element for Kentico Kontent that allows you to select a content item from another Kontent project.

Screenshot of custom element

Setup

  1. Deploy the code to a secure public host
  2. Follow the instructions in the Kentico Kontent documentation to add the element to a content model.
    • The Hosted code URL is where you deployed to in step 1
    • Pass the necessary parameters as directed in the JSON Parameters configuration section of this readme.

Deploying

Netlify has made this easy. If you click the deploy button below, it will guide you through the process of deploying it to Netlify and leave you with a copy of the repository in your GitHub account as well.

Deploy to Netlify

JSON Parameters

You need to specify the projectid parameter in order to make the element work. The optional filter parameter is for filtering just subitems of your project and you can use any filtering described in our documentation (separated by &):

Content filtering documentation

Within the filter you can also specify what language of your items you want to retrieve (a default language is returned OOTB) - https://docs.kontent.ai/tutorials/develop-apps/get-content/getting-localized-content#a-ignoring-language-fallbacks

{
    "projectid": "302946ce-a441-00e5-3dba-ec6ccc479168",
    "filter": "system.type=article"
}

Saved Value

The value is saved as a string representing a JSON object. When deserialized, it will look like:

[
  {
    "codename": "article_1",
    "name": "Article 1",
    "language": "en-US",
    "type": "article"
  },
  {
    "codename": "url1",
    "name": "url1",
    "language": "en-US",
    "type":"video_item__url_"
  }
]

About

Reference items from another Kontent project with this item selector custom element for Kentico Kontent

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published