How To Run Javascript Function Inside Ext.List itemTpl
Posted by admin on
September 25, 2012
So my itemTpl contained HTML code with some EX Javascript inside Ext.List to dynamically output values based on a store’s model.
While it is easy to output those fields by using { fieldname }, I got stuck for a bit when I wanted to run a Javascript function within it using the field output as the parameter.
The solution to this is to enclose your Javascript function with {[ and ]}.
Check the sample below:
itemTpl: '<div>{[ myfunc({values.fieldname}) ]}</div>'









