Hello All,
I am little new to module development; I am using christoctemplate.codeplex.com as module development template and want to use the same to produce 6 user controls.
Basically I want to develop wizard type pages and the logic is pertain to 6 different user controls, for that I have decided to use christoctemplate; I have develop basic module using the same that contains three user controls (1 for View; 2 for setting; 3 for edit) and I am able to install it success fully.
Now I want to add more user controls in this module (one for each steps); I am able to add them in project and build but when I install the package the module don't show option to chose which user control to display when adding to page.
I know that I need to add them in Modules.DNN (DNN Manifest file) but I don't know how? At present the file looks like following.
Any help would be most appreciated.
Best Regards, Jigar
<component type="Module">
<desktopModule>
<moduleName>SilverCoderModules</moduleName>
<foldername>SilverCoderModules</foldername>
<businessControllerClass>DotNetNuke.Modules.SilverCoderModules.Components.FeatureController</businessControllerClass>
<supportedFeatures />
<moduleDefinitions>
<moduleDefinition>
<friendlyName>SilverCoderModules</friendlyName>
<defaultCacheTime>0</defaultCacheTime>
<moduleControls>
<moduleControl>
<controlKey />
<controlSrc>DesktopModules/SilverCoderModules/View.ascx</controlSrc>
<supportsPartialRendering>False</supportsPartialRendering>
<controlTitle />
<controlType>View</controlType>
<iconFile />
<helpUrl />
<viewOrder>0</viewOrder>
</moduleControl>
<moduleControl>
<controlKey>Edit</controlKey>
<controlSrc>DesktopModules/SilverCoderModules/Edit.ascx</controlSrc>
<supportsPartialRendering>False</supportsPartialRendering>
<controlTitle>Edit Content</controlTitle>
<controlType>Edit</controlType>
<iconFile />
<helpUrl />
<viewOrder>0</viewOrder>
<supportsPopUps>True</supportsPopUps>
</moduleControl>
<moduleControl>
<controlKey>Settings</controlKey>
<controlSrc>DesktopModules/SilverCoderModules/Settings.ascx</controlSrc>
<supportsPartialRendering>False</supportsPartialRendering>
<controlTitle>SilverCoderModules Settings</controlTitle>
<controlType>Edit</controlType>
<iconFile />
<helpUrl />
<viewOrder>0</viewOrder>
</moduleControl>
</moduleControls>
</moduleDefinition>
</moduleDefinitions>
</desktopModule>
</component>