Expand my Community achievements bar.

SOLVED

Custom data type in content fragment to fetch values from data source

Avatar

Community Advisor

Hi All, 

We have a requirement to fetch values from data source in content fragment, and for that we need a completely new custom data type in Content fragment model. 

Any reference link/suggestions how could we achieve this ??

custom_data_type.jpg

Any help is appreciated. 

 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

@Nitin_laad,

Absolutely.

You can find the list of content fragment, data types, configuration from here, http://localhost:4502/crx/de/index.jsp#/libs/settings/dam/cfm/models/formbuilderconfig/datatypes

1. Create the custominput component under /apps.my-site. Make sure you follow an implementation of how an existing data type has been implemented for the content fragment editor under /libs/settings/dam/cfm/models/formbuilderconfig/datatypes.

2. overlay /libs/settings/dam/cfm/models/formbuilderconfig/datatypes with /apps/settings/dam/cfm/models/formbuilderconfig/datatypes.

3. Use the Sling Resource Merger mechanism to add your custominput component under the datatypes node. Add the new node, /apps/settings/dam/cfm/models/formbuilderconfig/datatypes/custominput with configurations like (making sure that you take an existing content fragment data type component as inspiration and as an example for your own configuration, so you understand the structure of how to component is setup; also lets you understand the requirements to how you can create your own datatype component.

Screenshot 2020-09-29 at 21.17.12.png

 

4. Test!

 

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

@Nitin_laad,

Absolutely.

You can find the list of content fragment, data types, configuration from here, http://localhost:4502/crx/de/index.jsp#/libs/settings/dam/cfm/models/formbuilderconfig/datatypes

1. Create the custominput component under /apps.my-site. Make sure you follow an implementation of how an existing data type has been implemented for the content fragment editor under /libs/settings/dam/cfm/models/formbuilderconfig/datatypes.

2. overlay /libs/settings/dam/cfm/models/formbuilderconfig/datatypes with /apps/settings/dam/cfm/models/formbuilderconfig/datatypes.

3. Use the Sling Resource Merger mechanism to add your custominput component under the datatypes node. Add the new node, /apps/settings/dam/cfm/models/formbuilderconfig/datatypes/custominput with configurations like (making sure that you take an existing content fragment data type component as inspiration and as an example for your own configuration, so you understand the structure of how to component is setup; also lets you understand the requirements to how you can create your own datatype component.

Screenshot 2020-09-29 at 21.17.12.png

 

4. Test!