SharePoint 2010 Ribbon with wrong style in Chrome and Safari

简介: When we add custom ribbon to SharePoint 2010, it may display well in IE but not in Chrome and Safari.

When we add custom ribbon to SharePoint 2010, it may display well in IE but not in Chrome and Safari. The sample xml is below like this:

<Tab Id=""Ribbon.CustomTab"" Description="""" Sequence=""4000"" Title=""测试Ribbon"">
            <Scaling Id=""Ribbon.CustomTab.Scaling"">
              <MaxSize Id=""Ribbon.CustomTab.Scaling.Custom.MaxSize"" Sequence=""10"" Size=""LargeLarge"" 

GroupId=""Ribbon.CustomTab.Group""/>
              <Scale Id=""Ribbon.CustomTab.Scaling.Custom.Popup"" Sequence=""20"" Size=""Popup"" 

GroupId=""Ribbon.CustomTab.Group""/>
            </Scaling>
            <Groups Id=""Ribbon.CustomTab.Groups"">
              <Group Id=""Ribbon.CustomTab.Group"" Sequence=""30"" Title="""" Description="""" 

Template=""Ribbon.Templates.Flexible2"">
                <Controls Id=""Ribbon.CustomTab.Controls"">
                  <Button Id=""Ribbon.CustomTab.Button"" Image32by32=""/_layouts/2052/images/formatmap32x32.png"" 

Image32by32Top=""-320"" Image32by32Left=""-64"" Command=""CustomCommand"" Description="""" LabelText=""Click Me"" Sequence=""10"" 

TemplateAlias=""o1"" ToolTipTitle=""Test"" ToolTipDescription=""Test""/>
                </Controls>
              </Group>
            </Groups>
          </Tab>

We may cost a long time but can't find the reason. Why SP 2010 own ribbon works well in Chrome and Safari?

The reason may be a little disappointing for the Group tag with Title attribute null...

When we set the Title attribute, it works well.

相关文章
|
XML JavaScript 数据格式
SharePoint 2013 添加Ribbon菜单
原文:SharePoint 2013 添加Ribbon菜单   前言:今天,我们尝试一下添加SharePoint2013的Ribbon菜单,这个Ribbon菜单是由XML定义,JavaScript脚本来实现的,基本类似为:Feature添加的功能。
1058 0
SharePoint 2013 初始化Ribbon选中Tab
  SharePoint使用中,经常打开页面会有默认展开的Ribbon选项,有时这又不是我们需要的,所以我们就需要默认选中的项目,下面简单介绍下如何实现。 方法一   1、Dispform.aspx页面默认Ribbon为View视图;   2、最简单的方式就是添加参数(InitialTabId=Ribbon.
839 0
SharePoint 2013 隐藏部分Ribbon菜单
  SharePoint的使用中,因为用户经常不愿意看到那些不经常使用的操作,我们经常需要定制Ribbon菜单, 更多时候不是隐藏所有,而是隐藏掉我们不需要的那些;下面,我们一列表为例,简单介绍下如何部分隐藏Ribbon菜单   1、默认情况下,List的Ribbon菜单有Item和List两个部...
915 0
|
XML JavaScript 数据格式
SharePoint 2013 添加Ribbon菜单
前言:今天,我们尝试一下添加SharePoint2013的Ribbon菜单,这个Ribbon菜单是由XML定义,JavaScript脚本来实现的,基本类似为:Feature添加的功能。下面,让我们看看它的实现过程吧: 1、新建空项目,用来添加我们的Ribbon,如下图; 2、指定调试站...
921 0
|
9天前
|
负载均衡 监控 网络协议
SpringCloud之Ribbon使用
通过以上步骤,就可以在Spring Cloud项目中有效地使用Ribbon来实现服务调用的负载均衡,提高系统的可靠性和性能。在实际应用中,根据具体的业务场景和需求选择合适的负载均衡策略,并进行相应的配置和优化,以确保系统的稳定运行。
34 15
|
9天前
|
负载均衡 算法 Java
除了 Ribbon,Spring Cloud 中还有哪些负载均衡组件?
这些负载均衡组件各有特点,在不同的场景和需求下,可以根据项目的具体情况选择合适的负载均衡组件来实现高效、稳定的服务调用。
23 5
|
2月前
|
负载均衡 Java Nacos
SpringCloud基础1——远程调用、Eureka,Nacos注册中心、Ribbon负载均衡
微服务介绍、SpringCloud、服务拆分和远程调用、Eureka注册中心、Ribbon负载均衡、Nacos注册中心
SpringCloud基础1——远程调用、Eureka,Nacos注册中心、Ribbon负载均衡
|
3月前
|
负载均衡 算法 Java
SpringCloud之Ribbon使用
通过 Ribbon,可以非常便捷的在微服务架构中实现请求负载均衡,提升系统的高可用性和伸缩性。在实际使用中,需要根据实际场景选择合适的负载均衡策略,并对其进行适当配置,以达到更佳的负载均衡效果。
59 13
|
5月前
|
负载均衡 算法 Java
Spring Cloud Netflix 之 Ribbon
Spring Cloud Netflix Ribbon是客户端负载均衡器,用于在微服务架构中分发请求。它与RestTemplate结合,自动在服务发现(如Eureka)注册的服务之间进行调用。配置包括在pom.xml中添加依赖,设置application.yml以连接Eureka服务器,并在配置类中创建@LoadBalanced的RestTemplate。通过这种方式,当调用如`/user/userInfoList`的接口时,Ribbon会自动处理到多个可用服务实例的负载均衡。