Hi to all,
I've to implement a custom module in order to search, index and manage a collection of companies,
since moast funcitions are always the same i'd like to make a module with some (view) controls... I've started a new fresh dnn module with this manifest:
<modules>
<module>
<friendlyname>Companies.Matrix</friendlyname>
<cachetime>0</cachetime>
<controls>
<control>
<title>Dashboard</title>
<src>DesktopModules/Companies/View.ascx</src>
<type>View</type>
<helpurl></helpurl>
</control>
</controls>
</module>
<module>
<friendlyname>Companies.Search</friendlyname>
<cachetime>0</cachetime>
<controls>
<control>
<title>Search</title>
<src>DesktopModules/Companies/Search.ascx</src>
<type>View</type>
<helpurl></helpurl>
</control>
</controls>
</module>
<module>
<friendlyname>Results</friendlyname>
<cachetime>0</cachetime>
<controls>
<control>
<title>Results</title>
<src>DesktopModules/Companies/Results.ascx</src>
<type>View</type>
<helpurl></helpurl>
</control>
</controls>
</module>
</modules>
than...
the first sub-module displays a clustered view of companies,
the second is a search modul with its form,
and the third sub module will show the result of both the above described sub modules.
so i will like to to perform searches by the use of the 1st and 2nd module, than I'd like to use the third module to display and than manage results.
Then, how to link the 3rd module to the 1st and to the 2nd?
NOTE: each module must be show alone (ie. without the others)
thanks in advice.