salesforce中使用标准和自定义组件多种方式实现helpText(tip tool)效果 - 合集/配图

场景描述:在为泸州老窖开发CRM系统招投标站点Site模块时,遇到helpText字段的icon无法显示或者显示了icon,但是hover上去却没有提示框。因此对此现象抽离出了如下两个具体问题。

问题1、如何开发类似标准页面的help提示效果的更加友好的编辑界面,来帮助游客(合作伙伴,供应商)更好理解字段含义知道如何录入信息才合法呢?

问题2、为什么在showHeader="false"的vf页面上,显示不出icon,有没有办法可以让它在所有情况都能显示的解决方案呢?

你需要知道标准方法展示help提示的技术边界 - 瓶颈

However, there are two scenarios where helpText Bubble is not displayed in the VisualForce page.

1、If we use "Label" attribute of , then helpText bubble is not displayed in visualforce page.

2、If we set "showHeader=false"  of , in that case also helpText bubbles is not displayed in visualforce page.

3、If we edit help description in a field, you can enter up to 255 characters.

===============++++++++++++ 说正事专用分隔符++++++++++++++================

我们先看下效果preview:

salesforce中使用标准和自定义组件多种方式实现helpText(tip tool)效果 - 合集/配图_第1张图片

===============++++++++++++对比分隔符++++++++++++++================

salesforce中使用标准和自定义组件多种方式实现helpText(tip tool)效果 - 合集/配图_第2张图片

Code参考:

helpIcon.component:


	
	
helpText.component:


    
    
    
        
            
            {!value}
        
    
VF Page:

    
    
        
            
                
                    
                    
                
                    
            
        
        
            
                
                
              
        
        
            
                
                
            
        
    



你可能感兴趣的:(Sales,Cloud,Salesforce,Experience)