有没有人知道如何使用extjs的分组视图和分组由groupingStore指示的特定字段的第一个字母?
例如:
group 'l':
record with field 'lion'
record with field 'leopard'
group 'g':
record with field 'giraffe'
答案 0 :(得分:4)
groupRenderer:function(v,u,r,rowIndex,colIndex,js){
return r.get('fieldname').charAt(0);
},