簡體   English   中英

在extjs中使用行/列坐標填充網格

[英]Populate grid with row/column coordinates in extjs

我試圖用來自json的數據填充extjs網格。 我需要在單元格中填充的值在提供行號和列號的對象中。 我不確定如何使用此json結構將值放入正確的單元格中。

這是json:

{
  "_links" : {
    "self" : {
      "href" : "http://localhost:8080/api/reports"
    }
  },
  "columns" : [ {
    "softwareBuild" : {
      "buildId" : 10,
      "generation" : "Alpha",
      "build" : "1.0"
    },
    "eventTypeDisplay" : "Event Name 1"
  }, {
    "softwareBuild" : {
      "buildId" : 10,
      "generation" : "Beta",
      "build" : "2.0"
    },
    "eventTypeDisplay" : "Event Name 1"
  }],
  "entries" : [ {
    "row" : 0,
    "column" : 0,
    "value" : 10
  }, {
    "row" : 0,
    "column" : 1,
    "value" : 20
  }, {
    "row" : 1,
    "column" : 0,
    "value" : 30
  }, {
    "row" : 1,
    "column" : 1,
    "value" : 40
  } ],
  "rows" : [ {
    "metricTypeId" : 1,
    "metricName" : "Name 1",
    "source" : "1",
  }, {
    "metricTypeId" : 2,
    "metricName" : "Name 2",
    "source" : "2",
  }]
} 

這是網格視圖:

Ext.create('Ext.grid.Panel', {
    renderTo: document.body,
    store: 'DataStore',
    width: 400,
    height: 200,
    title: 'Software Metrics',
    columns: [
        {
            text: 'Dynamic Column Name',
            dataIndex: ''
        }
    ]
});

這是模型和商店:

Ext.define('DataModel', {
    extend: 'Ext.data.Model',
    fields: [ 'value', 'generation', 'build', 'metricName', 'source' ]
});


Ext.define('DataStore', {
    extend: 'Ext.data.Store'
    model: 'DataModel',
    proxy: {
        type: 'rest',
        url : 'api/reports'
    }
});

我有另一個問題是如何使用json對象中的columns數組中的“ build”值填充列標題。 以及如何使用rows數組中的“ metricName”填充第一列中的單元格。 但這可能是另一個問題。

此過程將需要一些時間,因此我將告訴您您需要做什么:

1-獲取JSON結構並將其分配給變量,您應該為此使用Ext.Ajax.request。

2-遍歷column對象並創建另一個對象,該對象是ExtJS的有效列格式,例如:

var columns = [{
    text : '1.0',
    dataIndex: 'Alpha'
},{
    text: '2.0',
    dataIndex : 'Beta'
}];

3-使用grid.reconfigure(columns);將列應用於網格grid.reconfigure(columns);

4-您的模型應包含以下fields : ['Alpha', 'Beta']

5-您的商店現在應該使用內存代理,因為您是使用Ext.Ajax.request抓取數據的。

6-遍歷您的entry對象,並獲取應添加的總行數。

var entries = [{
  "row" : 0,
  "column" : 0,
  "value" : 10
}, {
  "row" : 0,
  "column" : 1,
  "value" : 20
}, {
  "row" : 1,
  "column" : 0,
  "value" : 30
}, {
  "row" : 1,
  "column" : 1,
  "value" : 40
}];

var rows = [];
for (var i=0;i<entries.length;i++) {
    var currentRow = entries[i].row,
        currentColumn = entries[i].column,
        columnName = columns[currentColumn].dataIndex;

    if(currentRow > rows.length - 1) {
        rows.length = currentRow + 1;
    }
    if (!rows[currentRow]) rows[currentRow] = {};
    rows[currentRow][columnName] = entries[i].value;
}

7-使用store.loadRawData添加將行值分配給您的商店

小提琴: https : //fiddle.sencha.com/#fiddle/t2g

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM