RowNumberer does not show numbers greater than 99 in Google Chrome

I'm having issues with Ext.grid.RowNumberer in Google Chrome. When the GridPanel in which I use it contains more than 99 entries, RowNumberer only shows points for them instead of the correct numbers. Everything works fine in Firefox.

So, is this a common Ext Js error or am I doing something wrong?

Ext Js Version - 3.3.0

thank

+3
source share
3 answers

Typically, dots appear when the contents of the cell do not match the width. Try increasing the row width of the RowNumberer.

columns: [
    new Ext.grid.RowNumberer({width: 50}),
    // other columns
]
+7
source

I had a similar problem in ExtJS version 4.1.

, 10 . , , .

Ext.create('Ext.grid.RowNumberer',{resizable: true})

, -.

+2

The column width is too small to display the row number. You should increase the width:

RowNumberer rn = new RowNumberer();
rn.setResizable(true);
rn.setWidth(65);
0
source

All Articles