To display a Web link, basically an URL, all you need to do is write a
custom renderer function for the ExtJs Grid column that you want as
shown below ...
formatURL: function(value){
myURL = '';
if(value !== ''){
myURL = '<a href="http://' + value + '" target="_blank">' + value +'</a>';
}
return...