I'd like to show different values in a Kendo Grid cell. Something similar to: "#=IValue ? '1':'0'#"
.
What's the correct syntax to use a switch to achieve this?
You can use an if/else statement. See this page.
# if (IFlowCode == 1) {# 'A' #} else if (IFlowCode == -1) {# 'b' #} else if (IFlowCode == 0) {# 'C' #}#");