Below is my tpl that uses JSON data. I simply want to check if "Key" == "something", show the corresponding "Value" as a link.
thanks
this.tpl = new Ext.XTemplate(
  '<div class="blah" style="padding-bottom:3px;float:left;">Details</div>',
    '<hr style="clear:left;"/>',
      '<tpl for=".">',
         '<span class="blah"><b>{Key}:</b> {Value}</span>',
        '</tpl>',
      '</div>',
      '<br>'
    );
 
                        
Test in extjs3.3