smartgwt的Listgrid有一个显示行号的功能。我尝试将它用于小桌子,它就像一个魅力。
但是对于行数超过9999的表格,“行号”列不会显示超过4位数。
所以,这是一个问题。如何使Listgrid显示“行号”列中的所有数字?
我的测试网格:
ListGrid listGrid=new ListGrid();
listGrid.setWidth(300);
listGrid.setHeight(200);
ListGridField name = new ListGridField("name", "Name");
listGrid.setFields(name);
listGrid.setShowRowNumbers(true);
Record[] records=new Record[10000];
for (int i=0; i<records.length; i++){
Map<String, String> map=new HashMap<String, String>();
map.put("name", "Hello");
records[i]=new Record(map);
}
listGrid.setData(records);
listGrid.setAutoFitData(Autofit.HORIZONTAL);
答案 0 :(得分:2)
检查this。你将能够改变宽度。
代码应该是
ListGridField rowNumberField = new ListGridField();
// Either
//-------------------------------------------------------
rowNumberField.setWidth(15); //Whatever width you want
//-------------------------------------------------------
// Or
//-------------------------------------------------------
rowNumberField.setAutoFitWidth(true);
//-------------------------------------------------------
ListGrid listGrid = new ListGrid();
listGrid.setRowNumberFieldProperties(rowNumberField);