5

从 Sitecore 7 中的图像字段浏览图像时,是否可以默认使用“浏览”选项卡而不是新的“搜索”选项卡?

新的搜索功能非常适合高级用户,但是,我的内容作者发现它令人困惑,尤其是在结果中显示多种语言的情况下。在某些情况下,选择搜索结果项也会产生错误,所以我现在只想禁用它。

在此处输入图像描述

4

2 回答 2

5

在此文件 \sitecore\shell\Applications\Media\MediaBrowser\MediaBrowser.xml 上,您需要更改选项卡的顺序:您将拥有:

 <Tabstrip ID="Tabs" Width="100%" Height="471px">
      <Tab ID="MediaLibraryTab" Header="Browse" Height="100%">
        <GridPanel Width="100%" Height="100%" Style="table-layout:fixed" Columns="3" GridPanel.Height="100%">
          <Scrollbox Height="100%" Class="scScrollbox scFixSize scFixSize8" Background="white" Padding="0px" GridPanel.Height="100%" GridPanel.Width="200" GridPanel.VAlign="top" Style="overflow:auto">
            <TreeviewEx ID="Treeview" DataContext="MediaDataContext" Click="SelectTreeNode" DblClick="TreeViewDblClick" ShowRoot="true" ContextMenu='Treeview.GetContextMenu("contextmenu")' Width="100%" />
          </Scrollbox>
          <VSplitter ID="MediaBrowserLeft" Target="left" GridPanel.Width="4" />
          <Scrollbox ID="Listview" Width="100%" Height="100%" Class="scScrollbox scFixSize scFixSize8" Background="white" Padding="0px" GridPanel.Height="100%" GridPanel.Width="100%" GridPanel.VAlign="top" />
      </GridPanel>
      </Tab>
     <Tab ID="MediaTab" Header="Search" Height="100%">
        <Frame SourceUri="/sitecore/shell/Applications/Buckets/MediaBrowser.aspx" Width="100%" Height="100%"></Frame>
      </Tab>
    </Tabstrip>

代替 :

<Tabstrip ID="Tabs" Width="100%" Height="471px">
   <Tab ID="MediaTab" Header="Search" Height="100%">
        <Frame SourceUri="/sitecore/shell/Applications/Buckets/MediaBrowser.aspx" Width="100%" Height="100%"></Frame>
      </Tab>
      <Tab ID="MediaLibraryTab" Header="Browse" Height="100%">
        <GridPanel Width="100%" Height="100%" Style="table-layout:fixed" Columns="3" GridPanel.Height="100%">
         <Scrollbox Height="100%" Class="scScrollbox scFixSize scFixSize8" Background="white" Padding="0px" GridPanel.Height="100%" GridPanel.Width="200" GridPanel.VAlign="top" Style="overflow:auto">
         <TreeviewEx ID="Treeview" DataContext="MediaDataContext" Click="SelectTreeNode" DblClick="TreeViewDblClick" ShowRoot="true" ContextMenu='Treeview.GetContextMenu("contextmenu")' Width="100%" />
          </Scrollbox>
          <VSplitter ID="MediaBrowserLeft" Target="left" GridPanel.Width="4" />
          <Scrollbox ID="Listview" Width="100%" Height="100%" Class="scScrollbox scFixSize scFixSize8" Background="white" Padding="0px" GridPanel.Height="100%" GridPanel.Width="100%" GridPanel.VAlign="top" />
        </GridPanel>
      </Tab>
   </Tabstrip>

您只需更改标签 TAB 的顺序。

于 2013-09-24T05:10:04.870 回答
0

如果您在新的 Speak UI(Sitecore 7 中提供)中使用媒体浏览器,您可以通过执行以下操作来完成相同的操作:

在 /App_Config/Include/Sitecore.Speak.config 文件中替换以下行:

<override xmlControl="Sitecore.Shell.Applications.Media.MediaBrowser" with="/sitecore/client/applications/Dialogs/SelectMediaDialog" />

与行:

<override xmlControl="Sitecore.Shell.Applications.Media.MediaBrowser" with="/sitecore/client/applications/Dialogs/SelectMediaViaTreeDialog" />

感谢 Sitecore 支持提供的说明。

于 2014-08-06T13:13:09.640 回答