11

我是 extjs 的新手。我想为每个网格元素显示图标图像。你能帮帮我吗?

我正在从 xml 文件中获取图像路径。

我的代码如下。在这里,我正在显示图像路径。

我必须通过显示图像来替换它。

Ext.onReady(function(){

      var store = new Ext.data.Store({
        url: 'new_frm.xml',

               reader: new Ext.data.XmlReader({
               record: 'message',
               fields: [{name: 'first'},{name: 'last'},{name: 'company'},{name: 'email'},{name: 'gender'},{name: 'form-file'},{name: 'state'},{name: 'Live'},{name: 'content'}]
           })
    });

      var grid = new Ext.grid.GridPanel({
        store: store,
        columns: [
            {header: "First Name", width: 120, dataIndex: 'first', sortable: true},
            {header: "Last Name", width: 180, dataIndex: 'last', sortable: true},
            {header: "Company", width: 115, dataIndex: 'company', sortable: true},          
            {header: "Email", width: 100, dataIndex: 'email', sortable: true},
            {header: "Gender", width: 100, dataIndex: 'gender', sortable: true},
            {header: "Photo", width: 100, dataIndex: 'form-file', sortable: true},
            {header: "State", width: 100, dataIndex: 'state', sortable: true},
            {header: "Living with", width: 100, dataIndex: 'Live', sortable: true},
            {header: "Commands", width: 100, dataIndex: 'content', sortable: true}

        ],
        renderTo:'example-grid',
        height:200
    });

    store.load();
});
4

7 回答 7

32

您需要将渲染器添加到要显示图像的列中。渲染器值是调用以渲染图像标签的函数。

您的列元素之一已修改:

{header: "Photo", width: 100, renderer:renderIcon, dataIndex: 'form-file', sortable: true},

示例渲染器函数:

function renderIcon(val) {
    return '<img src="' + val + '">';
}

在此示例中,dataIndex 的值必须是图像的完整路径。如果没有,那么您必须添加一些额外的逻辑。

于 2009-04-13T16:04:51.583 回答
4

可以针对您的特定问题采用的另一种替代方法是在 CSS 文件中设置图像,例如:

.icon-red {
    background-image:  url('red.png');
    background-repeat: no-repeat;
}

.icon-green {
    background-image:  url('green.png');
    background-repeat: no-repeat;
}

然后创建一个渲染以在渲染时添加到单元元数据:

renderIcon: function(value, metadata, record, rowIndex, colIndex, store) {

    // set the icon for the cells metadata tags
    if (value > 0) {
        metadata.css = metadata.css + ' icon-green ';
    } else {
        metadata.css = metadata.css + ' icon-red ';
    }

    // add an individual qtip/tooltip over the icon with the real value
    metadata.attr = 'ext:qtip="' + (value) + '"';

    return '&nbsp;';
}
于 2012-09-27T19:21:20.027 回答
1

尝试在要在其中显示图像的列声明上使用“render”属性。使用 Render 属性,您可以输出您选择的 HTML。在 ExtJs 论坛上查看 :) 希望为您指明正确的方向

于 2009-03-25T21:13:02.903 回答
1

这是更好的模式,应用一个小部件列和小部件图像类型,如下所示:

columns:[
      {text:'Image', xtype:'widgetcolumn', widget:{xtype:'image', src: 'http://www.sencha.com/img/20110215-feat-html5.png'}, dataIndex:'image'}]

在 extjs 6

于 2017-01-27T06:00:48.537 回答
0

您可以将 xml 文件编写为 htmlspecialchars("") 然后您可以简单地查看它。

于 2009-03-26T04:57:08.870 回答
0

为了显示您的名字列的图标,请执行以下更改

{header: "First Name", width: 120, renderer:first, dataIndex: 'first', sortable: true},

使功能为

function first(val)
{
return '<img src="' + val + '">';
}
于 2014-01-10T05:22:21.403 回答
-1

简单的

在他的 Json 中传递字符串< img src = " " />

在 dataIndex 之后:

fields:[

{name: 'images', type: 'string'}

]

{

text: 'images',

dataIndex: 'images'

}
于 2015-06-23T23:24:54.673 回答