Hello Experts,
I have customised the import component as follows
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<config version='1.0'>
<scope>
<component id="abc"
extends="import:webcomponent/config/library/contenttransfer/importcontent/import_component.xml">
<params>
<param name="objectId" required="true" />
<param name="filenameWithPath" required="false" />
<param name="localFilePath" required="false" />
<param name="parentPath" required="false" />
<param name="docbaseType" required="false" />
<param name="isDirectory" required="false" />
<param name="baseDocbaseType" required="false" />
<param name="format" required="false" />
<param name="defaultAttributesValues" required="false" />
<param name="oleScanEnable" required="false" />
</params>
<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>
<folder>/custom/jsp/library/contenttransfer/importcontent/importFolder.jsp
</folder>
</pages>
</component>
</scope>
</config>
I want to call this component from the ActionService.execute() method.
But the component is not being called.
Please tell me why the component is not being called.
keeping the component id as import changes the base import functionality and it works the way i want.....but i want the base import to work normal and only this custom import to behave according to the requirement. I am calling this custom import from a separate menu item.
Please please please reply.....