I have a Javascript object literal like
test : {
length: 3,
text: "Please enter 3 characters"
}
I want to make the text rendered dynamic based on length, something like this
test : {
length: 3,
text: "Please enter {{:length}} characters"
}
Is there any way to achieve this in JsViews ? I looked at https://github.com/BorisMoore/jsviews/issues/327, but I am not sure if the same approach is applicable in my scenario.