如何调整smartgwt Listgrid的行号列?

时间:2013-01-25 16:17:40

标签: java gwt smartgwt

smartgwt的Listgrid有一个显示行号的功能。我尝试将它用于小桌子,它就像一个魅力。

但是对于行数超过9999的表格,“行号”列不会显示超过4位数。

enter image description here

所以,这是一个问题。如何使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);

1 个答案:

答案 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);