私は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();
});
画像を表示する列にレンダラーを追加する必要があります。レンダラー値は、画像タグをレンダリングするために呼び出す関数です。
変更された列要素の1つ:
{header: "Photo", width: 100, renderer:renderIcon, dataIndex: 'form-file', sortable: true},
サンプルレンダラー関数:
function renderIcon(val) {
return '<img src="' + val + '">';
}
この例では、dataIndexの値は画像のフルパスである必要があります。そうでない場合は、ロジックを追加する必要があります。
特定の質問に採用できるもう1つの方法は、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 ' ';
}
これはより良いモードです。次のようなウィジェット列とウィジェット画像タイプを適用します。
columns:[
{text:'Image', xtype:'widgetcolumn', widget:{xtype:'image', src: 'http://www.sencha.com/img/20110215-feat-html5.png'}, dataIndex:'image'}]
extjs6で
画像を表示する列宣言で「render」属性を使用してみてください。Render属性を使用すると、選択したHTMLを出力できます。 ExtJsフォーラムでそれをチェックしてください:)それがあなたを正しい方向に向けることを願っています
xmlファイルをhtmlspecialchars( "")として記述し、それを簡単に表示できます。
名の列のアイコンを表示するには、次の変更を行います
{header: "First Name", width: 120, renderer:first, dataIndex: 'first', sortable: true},
として機能させる
function first(val)
{
return '<img src="' + val + '">';
}