devin
Change the default droplist control from:
<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>
You can do similiar customization on other dialogs.
"Devin Rader" <dmr...@sseinc.com> wrote in message
news:OcPKB2MuCHA.1640@TK2MSFTNGP09...
devin
"Kevin [MSFT]" <kevi...@online.microsoft.com> wrote in message
news:#8M#Qm3uCHA.2476@TK2MSFTNGP10...
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" <dmr...@sseinc.com> wrote in message
news:OcPKB2MuCHA.1640@TK2MSFTNGP09...