Extjsの一般的な基礎知識

3349 ワード

gridを設定して縞線を表示しない方法
Ext.create('Ext.grid.Panel', { // other options viewConfig: { stripeRows: false //   viewConfig          ,      } });
 
    column       。
   columns: {  defaults : {  menuDisabled : true  },          items:[              {                  text     : 'id',                  flex     : 1,                  sortable : false,                  dataIndex: 'id'              },              {                  text     : 'Name',                  width    : 75,                  sortable : true,                  dataIndex: 'name'              },              {                  text     : 'operator',                  width    : 75,                  sortable : true,                  dataIndex: 'operator'              }          ]         },