Hi All...
I want to configure newfolder component...I did something but there is not result..I created custom action and components like below...
- menu configuration:
......
<actionmenuitem dynamic="generic" name="my_custom" value="Custom Folder" action="custom_newfolder_act" showifinvalid="true"/>
......
- Action :
<config>
<scope>
<action id="custom_newfolder_act">
......
<execution>
<permit>folder_link_permit</permit>
<component>custom_newfolder_comp</component>
<container>custom_newfolder_container</container>
</execution>
......
</action>
</scope>
</config>
- Custom newfolder component:
<config>
<scope>
<component id="custom_newfolder_comp">
......
<base_type>dm_folder</base_type>
<default_type>my_custom_folder_type</default_type> ( default_type does not work )
......
</component>
</scope>
</config>
- Custom newfoldercontainer component:
<config>
<scope>
<component id="custom_newfolder_container" extends="propertysheetwizardcontainer:webcomponent/config/library/propertysheetwizardcontainer/propertysheetwizardcontainer_component.xml">
........
<newcomponentname>custom_newfolder_comp</newcomponentname>
</component>
</scope>
</config>
I created action on File menu .....File -> New -> Custom Folder ...when I click Custom Folder , then New Folder modal window appear..But in Type(dropdownlist) dm_folder is selected instead of my_custom_folder_type....
How could I change default_type in custom_newfolder_comp to my_custom_folder_type ??????