Hello Experts,
I need to customize Import component in such a way that user see's only relevant custom folder and custom document type when he performs import.
The import component has two sections Add Files and Add Folders, the Add Folders first displays the folders to be created during the import, but in my case these shows object types child to dm_folder even after doing configuration settings in xml file.
here is my code as below:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<config version='1.0'>
<scope>
<component id="import"
extends="import:webcomponent/config/library/contenttransfer/importcontent/import_component.xml">
<!--
This will display only corp_document in the import screen dropdown
for selection of object type
-->
<document-docbase-base-type>doc_import</document-docbase-base-type>
<document-docbase-type>doc_import</document-docbase-type>
<folder-docbase-type>custom_folder</folder-docbase-type>
<pages>
<start>
/webcomponent/library/contenttransfer/importcontent/importContent.jsp
</start>
</pages>
</component>
</scope>
</config>
The document import screen only shows doc_import and its custom attributes, but same doesn't work for custom_folder .
Can any one suggest why this is happening and probably some solution also.
Regards
Prashant.