2

我们有一个带有列的网格面板,显示效果很好。特别是一列是一个非常大的字符串。我们想在这一列中添加一个滚动条,只是为了容纳大墙的文本。

这可以用 Sencha EXT JS 完成吗?或者如果滚动条不能完成,那么鼠标悬停在列中显示整个文本怎么样?


var secondTab = Ext.create('Ext.grid.Panel', {

        columnWidth: 0.60,
        xtype: 'gridpanel',
        store: standardsResultsStore,
        autoheight: true,
        columns: [
            {
                id       :'standardName',
                text   : 'Standard Name',
                flex: 1,
                sortable : true,
                dataIndex: 'standard'
            },
            {
                text   : 'Description',
                flex    : 2,
                sortable : true,
                dataIndex: 'description_standard'
            }
        ]

    });     

4

1 回答 1

1

我用 CSS 做的,并将 tdCls 添加到特定列

.custom-column .x-grid-cell-inner { white-space:normal; } --- in tab tdCls: 'custom-column'

于 2012-09-27T14:31:18.700 回答