Is it possible to define a new variable within a jquery template?
I read the official jquery template docs but could not find anything on this.
I tried something like {{ var xxx=123 }}
but it didn't work.
Finally I am using a hack by doing
${$item.xxx=123,""}
and later using
$item.xxx
but I am sure it is not the best approach...