I have the problem in using this code:
var abc = new Ext.xTemplate (
'<b>Name: </b> : {name}',
'</br><b>City: </b> : {city}',
'</br><a onclick="abc('{name}')">View Address</a> '
{
abc: function(name)
{
}
}
ques: My requirement is to call a function abc, but giving error like 'Object Expected'; I tried to define this function in between <head> </head>, but not working. How to use this