PropertyGrid ExtJS中的超文本

时间:2015-03-05 12:02:34

标签: extjs propertygrid

我想在属性网格中显示一个超链接值...

(假设下面是属性网格中的记录)

propertyname | propertyvalue

我怎样才能实现这个目标?

提前致谢...

1 个答案:

答案 0 :(得分:0)

在docs =>中查看网格列上的渲染器属性。 http://docs.sencha.com/extjs/3.4.0/#!/api/Ext.grid.Column-cfg-renderer

因此,假设属性值已经是网址,您可以执行以下操作:

renderer: function(value, metaData, record, rowIndex, colIndex, store) {

      return String.format("<a href='{0}'><a/>", record.get('yourfieldnamehere'));
   }