Bonjour,
Je modifie une mise en forme d'un SharePoint en JSON et j'aimerais savoir comment écrire en JSON "supérieur à 90 jours".
Voici le code de base :
Et voici ce que j'ai essayé de faire qui n'a pas marché mais je pense être sur la bonne voie :
Modifié par Franjuju (15 May 2019 - 10:07)
Je modifie une mise en forme d'un SharePoint en JSON et j'aimerais savoir comment écrire en JSON "supérieur à 90 jours".
Voici le code de base :
{
"elmType": "div",
"style": {
"padding": "0 4px"
},
"attributes": {
"class": {
"operator": ":",
"operands": [
{
"operator": "==",
"operands": [
"@currentField",
""
]
},
"",
{
"operator": ":",
"operands": [
{
"operator": "<",
"operands": [
{
"operator": "Date()",
"operands": [
{
"operator": "toDateString()",
"operands": [
"@currentField"
]
}
]
},
{
"operator": "Date()",
"operands": [
{
"operator": "toDateString()",
"operands": [
"@now"
]
}
]
}
]
},
"sp-css-backgroundColor-errorBackground30",
{
"operator": ":",
"operands": [
{
"operator": "==",
"operands": [
{
"operator": "Date()",
"operands": [
{
"operator": "toDateString()",
"operands": [
"@currentField"
]
}
]
},
{
"operator": "Date()",
"operands": [
{
"operator": "toDateString()",
"operands": [
"@now"
]
}
]
}
]
},
"sp-css-backgroundColor-warningBackground30",
{
"operator": ":",
"operands": [
{
"operator": ">",
"operands": [
{
"operator": "Date()",
"operands": [
{
"operator": "toDateString()",
"operands": [
"@currentField"
]
}
]
},
{
"operator": "Date()",
"operands": [
{
"operator": "toDateString()",
"operands": [
"@now"
]
}
]
}
]
},
"sp-css-backgroundColor-successBackground30",
""
]
}
]
}
]
}
]
}
},
"txtContent": "@currentField"
}
Et voici ce que j'ai essayé de faire qui n'a pas marché mais je pense être sur la bonne voie :
"sp-css-backgroundColor-errorBackground30",
{
"operator": ":",
"operands": [
{
"operator": "> 90",
"operands": [
{
"operator": "Date()",
"operands": [
{
"operator": "toDateString()",
"operands": [
"@currentField"
]
}
]
},
{
"operator": "Date()",
"operands": [
{
"operator": "toDateString()",
"operands": [
"@now"
]
}
]
}
]
},
Modifié par Franjuju (15 May 2019 - 10:07)