"Declaration of the onUpdate function that customizes the button"
function onUpdate(buttonValues) do
let count := this.Count;
return {
caption: count > 0 ? "Send (" + count as string + ")" : "Send",
tooltip: "Click to send your request",
buttonColor: count > 0 ? "red" : "blue",
badge: {
caption: count > 0 ? count as string : "",
color: "#ffffff"
}
}
end;
"Determination of the button's visibility"
if this.Count >= 0 then
true
else
false
end