Hi, I am struggling with a very simple problem.
I have created a very simple module that displays records (consisting of a title and a description) from a table I have created.
It all works fine, I can add view, add, edit and delete records.
What I want to do is:
1) Define one view that shows the records ordered by Title
2) Define another view that shows the records ordered by Description
In other words when the user adds my new module they see two views pointing to the same modules data. So they can go into either view and add new records, and the views show the same data, just ordered differently.
In my dnn file I have a single <modules> node with a single child <module> node, and the <module> node has the following child <controls> nodes :
<control> of type View no key ----> Title Ordered view
<control> of type View and key = View_2 -----> Description Ordered view
<control> of type Edit and key = Edit
<control> of type Edit and key = Settings
The problem is that the "<control> of type view and key = View_2" is not displayed??? Anybody know what the problem is? Or can you point me to any resources that show how to display the same data in different ways in the same module.
Thanks,
CSharp.Joe