sharepoint column中的图片链接不能显示为图片
生活随笔
收集整理的這篇文章主要介紹了
sharepoint column中的图片链接不能显示为图片
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
在sharepoint的list中定義了一個Calculated (calculation based on other columns) 類型的column,需要自動根據條件顯示相對應的圖片。
在Formula 中輸入了以下代碼:
=IF([kpi status]="on time","/_layouts/p_w_picpaths/kpipeppers-0.gif",IF([kpi status]="delay","/_layouts/p_w_picpaths/kpipeppers-1.gif"))
?
在view時不顯示圖片顯示的是url
?
將以上代碼中圖片名稱的最后一個字母改為大寫,問題解決:
=IF([kpi status]="on time","/_layouts/p_w_picpaths/kpipeppers-0.giF",IF([kpi status]="delay","/_layouts/p_w_picpaths/kpipeppers-1.giF"))
轉載于:https://blog.51cto.com/pclzr/1908898
總結
以上是生活随笔為你收集整理的sharepoint column中的图片链接不能显示为图片的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: JAVA多线程之wait/notify
- 下一篇: Executor框架