javascript with Japanese comment

Javascript code posted by mashiki
created at 28 Apr 01:36

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Ext.onReady(function() {
  var name='RepRankKw',
    AP = Ext.namespace('App'),
    UT = AP.util,
    RD = AP.renderers;
  // 1-12 レポート用 指定キーワードのランク
  Ext.regModel('RepSpKeyRank', {
    fields:[
      'cli_id', 'check_date',
      {name: 'rankG', type:'int'},
      {name: 'rankY', type:'int'},
      {name: 'rankB', type:'int'},
      {name:'totalG', type:'int'},
      {name:'totalY', type:'int'},
      {name:'totalB', type:'int'},
      'urlG', 'urlY', 'urlB', 'comment'
    ]
  });
  
  var st_rep_spkey_rank = new Ext.data.Store({
    model: 'RepSpKeyRank',
    proxy: {
      type: 'ajax',
      url:'data.php?mode=GET_SPKEY_RANK',
      reader: {type: 'json'}
    }
  });
  
652 Bytes in 3 ms with coderay