06-14-2023 07:09 AM
Hi all,
I'm trying to display a custom type matadata template. This type extends cm:cmobject, like this:
<type name="tc:box"> <title>Box</title> <parent>cm:cmobject</parent> <properties> <property name="tc:boxName"> <type>d:int</type> </property> </properties> </type>
Following the official Alfresco documentation, I've declared the evaluators:
<bean id="tc.evaluator.isBox" parent="evaluator.doclib.action.nodeType"> <property name="types"> <list> <value>tc:box</value> </list> </property> </bean>
And the metadata template:
<template id="tcBoxMetadataTemplate"> <evaluator>tc.evaluator.isBox</evaluator> <line index="10" id="description" view="detailed">I AM A BOX</line> </template>
Everything in the same way I do with folders or content. I'm able to change the metadata displayed in custon types that extends cm:folder or cm:content, but not in this particular case. In fact it doesn't show any information at all, not even a default icon, like the folder was empty.
Is there any limitation on adding new metadata templates or do I have to declare this custom type somewhere, maybe?
Thank you in advanced! Regards.
06-14-2023 09:28 AM
If you want to use Alfresco Share standard Document Library you need to inherit your custom type from cm:folder or cm:content base type. Alternatively, you can modify this component to show nodes inheriting from cm:cmobject base type.
06-25-2023 11:26 PM
OK that answers it, thank you.
06-26-2023 04:26 AM
Hi Ángel,
Thank you for your response. What's the component I need to modify in order to show cmobject properties?
06-30-2023 06:39 AM
Ok, I *think* I finally detect where to add my custom type in order to display those nodes.
It seems to me that the file filters.lib.js (inside the alfresco-share-services.amp --> alfresco-share-services-11.140/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary) declares the type of nodes that are displayed in the Share explorer:
TYPE_MAP: { "documents": '+(TYPE:"content" OR TYPE:"app:filelink" OR TYPE:"folder")', "folders": '+(TYPE:"folder" OR TYPE:"app:folderlink")', "images": '+@cm\\:content.mimetype:image/*' }
I copied this file into my eclipse project in src > main > resources > alfresco > extension > templates > webscripts > org > alfresco > slingshot > documentlibrary and changed it like this:
TYPE_MAP: { "documents": '+(TYPE:"content" OR TYPE:"app:filelink" OR TYPE:"folder")', "folders": '+(TYPE:"folder" OR TYPE:"tc:box" OR TYPE:"app:folderlink")', "images": '+@cm\\:content.mimetype:image/*' },
But nothing happens... Alfresco does not display tc:box objects.
I don't know if I'm not overriding this component correctly or this isn't the solution at all.
Can anyone help me with this one? Thank you!
07-03-2023 07:18 AM
Ok, it seems it's not enough to overwrite the documentlibrary webscript, since finally it calls the FileFolderService, where the type of nodes the webscript returns are declared:
/** Shallow search for files and folders with a name pattern */ private static final String XPATH_QUERY_SHALLOW_ALL = "./*" + "[like(@cm:name, $cm:name, false)" + " and not (subtypeOf('" + ContentModel.TYPE_SYSTEM_FOLDER + "'))" + " and (subtypeOf('" + ContentModel.TYPE_FOLDER + "') or subtypeOf('" + ContentModel.TYPE_CONTENT + "')" + " or subtypeOf('" + ContentModel.TYPE_LINK + "'))]"; /** Deep search for files and folders with a name pattern */ private static final String XPATH_QUERY_DEEP_ALL = ".//*" + "[like(@cm:name, $cm:name, false)" + " and not (subtypeOf('" + ContentModel.TYPE_SYSTEM_FOLDER + "'))" + " and (subtypeOf('" + ContentModel.TYPE_FOLDER + "') or subtypeOf('" + ContentModel.TYPE_CONTENT + "')" + " or subtypeOf('" + ContentModel.TYPE_LINK + "'))]"; /** Deep search for folders with a name pattern */ private static final String XPATH_QUERY_DEEP_FOLDERS = ".//*" + "[like(@cm:name, $cm:name, false)" + " and not (subtypeOf('" + ContentModel.TYPE_SYSTEM_FOLDER + "'))" + " and (subtypeOf('" + ContentModel.TYPE_FOLDER + "'))]"; /** Deep search for files with a name pattern */ private static final String XPATH_QUERY_DEEP_FILES = ".//*" + "[like(@cm:name, $cm:name, false)" + " and not (subtypeOf('" + ContentModel.TYPE_SYSTEM_FOLDER + "'))" + " and (subtypeOf('" + ContentModel.TYPE_CONTENT + "')" + " or subtypeOf('" + ContentModel.TYPE_LINK + "'))]";
Now... How can I override an Alfresco service implementation?
Thank you!
Explore our Alfresco products with the links below. Use labels to filter content by product module.