Extjs - How to show combobox in Grid column

前端 未结 5 1422
难免孤独
难免孤独 2021-02-07 06:27

I have a gridpanel include date and combo column jsfiddle

But I don\'t want click to show my combo. I want show my combo without click, not hide inside

5条回答
  •  后悔当初
    2021-02-07 07:25

    Try this link..

    http://docs.sencha.com/extjs/5.0/components/grids/widgets_widgets_columns.html

    This is from Extjs 5.

    Update:

    {
        xtype: 'widgetcolumn',
        text: 'Progress',
        width: 120,
        widget: {
            xtype: 'combobox'
        }
    }
    

    This one worked like a charm.

提交回复
热议问题