Posts

Showing posts from March 15, 2019

エドワード・ホーク

Image
エドワード・ホーク Edward Hawke エドワード・ホーク 生誕 1705年2月21日 イギリス、ロンドン 死没 1781年10月16日 イギリス、サンバリー・オン・テムズ 所属組織 イギリス海軍 最終階級 海軍元帥(Admiral of the Fleet) テンプレートを表示 初代ホーク男爵 エドワード・ホーク (英語: Edward Hawke, 1st Baron Hawke 、1705年2月21日 - 1781年10月16日)は...

Sharepoint Online List Classic UI - Format Column/Row to be Red on certain Condition

Image
0 I do not know JSLink, so I am struggling to figure this out. I have a drop down menu column and if the user selects one of the drop down menus (Lets say its called "Peer Review - Rushed") I would like the cell to show red, or even the whole row if need be. How do I do that? I have this which works on the modern ui: "$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json", "elmType": "span", "debugMode": true, "txtContent": "@currentField", "style": "color": "=if(@currentField == 'Peer Review - Rushed', 'Red', if(@currentField == 'Peer Review - Slow', 'Blue', 'Black'))" sharepoint-list jslink share | improve this question edited Nov 16 '18 at 5:34 Arturas Smorgun 810 1 8 21 asked Nov 15 '18 at 23:44 Klj126 Klj126 1 1 Here...