Numberfield and dropdown box in same grid cell

74 views Asked by At

I trying to make both numberfield and dropdown box in same grid cell. But I haven't got the correct solution. Can anyone knows about logic Please help me.

1

There are 1 answers

3
pvlt On

You can create hbox layout fieldcontainer for wrap you components.

           {
                xtype: 'widgetcolumn',
                flex: 1,
                widget: {
                    xtype: 'fieldcontainer',
                    layout: 'hbox',
                    items: [{
                        xtype: 'combobox',
                        flex: 1
                    }, {
                        xtype: 'numberfield',
                        flex: 1
                    }, ]
                }
            }

fiddle