To change the default view in the Gallery viewer from "View As List" to
"View As Tree" you need to make a change to the ResourceGalleriesGrid.ascx
file in the following directory (by default):
C:\Program Files\Microsoft Content Management
Server\Server\IIS_CMS\WebAuthor\Dialogs\ResourceBrowser
Change the drop down list from this:
<asp:DropDownList Runat="server" id="GalleriesViewSelect"
AutoPostBack="True">
<asp:ListItem Value="View As List" Selected="True">View As
List</asp:ListItem>
<asp:ListItem Value="View As Tree">View As Tree</asp:ListItem>
</asp:DropDownList>
to this:
<asp:DropDownList Runat="server" id="GalleriesViewSelect"
AutoPostBack="True">
<asp:ListItem Value="View As List">View As List</asp:ListItem>
<asp:ListItem Value="View As Tree" Selected="True">View As
Tree</asp:ListItem>
</asp:DropDownList>
HTH,
<Todd />
"Devin Rader" <dmra
...@sseinc.com> wrote in message
news:OcPKB2MuCHA.1640@TK2MSFTNGP09...
> Can I force the Temaplte Gallary to default to treeview?
> devin