1. #1
    Sencha User macielcr7's Avatar
    Join Date
    Oct 2010
    Location
    Brasil
    Posts
    20
    Vote Rating
    0
    macielcr7 is on a distinguished road

      0  

    Default Unanswered: bug fieldcontainer layout type 'HBOX'....

    Unanswered: bug fieldcontainer layout type 'HBOX'....


    fieldcontainer layout bug type 'HBox' ....
    when I put a textfield and a button is like the image below ...
    Captura de tela de 2012-07-25 16:08:54.png

    follows the code ...

    HTML Code:
    {
                                xtype: 'fieldcontainer',
                                autoHeight: true,
                                hideLabel: true,
                                layout: {
                                    align: 'stretch',
                                    type: 'hbox'
                                },
                                items: [
                                    {
                                        xtype: 'textfield',
                                        name: 'cabo_fibra_nome',
                                        id: 'cabo_fibra_id_splitter_porta_nome',                                                                                                                                                                    
                                        readOnly: true,
                                        flex: 1,
                                        anchor: '100%',
                                        fieldLabel: 'Cabo Fibra'
                                    },
                                    {
                                        xtype: 'button',
                                        hidden: true,
                                        id: 'cabo_fibra_id_splitter_porta_button',
                                        margins: '15 0 0 5',
                                        iconCls: 'bt_cancel'
                                    }
                                ]
                            }

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,599
    Vote Rating
    435
    Answers
    3102
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    What's the bug?
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

  3. #3
    Sencha User macielcr7's Avatar
    Join Date
    Oct 2010
    Location
    Brasil
    Posts
    20
    Vote Rating
    0
    macielcr7 is on a distinguished road

      0  

    Default


    see the size of the textfield ...
    if an combobox or NumberField be normal

  4. #4
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,599
    Vote Rating
    435
    Answers
    3102
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    Inspect the DOM, did the button make the textfield larger?
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

  5. #5
    Sencha User macielcr7's Avatar
    Join Date
    Oct 2010
    Location
    Brasil
    Posts
    20
    Vote Rating
    0
    macielcr7 is on a distinguished road

      0  

    Default


    the same error happens if a textfield to a combobox or NumberField ...
    is not because the button does not ...

  6. #6
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,599
    Vote Rating
    435
    Answers
    3102
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    What browser? On Chrome and using 4.1.1 inspecting the <input> elements they are all 22px tall as expected

    Code:
    new Ext.form.Panel({
        renderTo : document.body,
        width    : 400,
        height   : 400,
        items    : [
            {
                xtype      : 'fieldcontainer',
                autoHeight : true,
                hideLabel  : true,
                layout     : {
                    align : 'stretch',
                    type  : 'hbox'
                },
                items      : [
                    {
                        xtype      : 'textfield',
                        name       : 'cabo_fibra_nome',
                        readOnly   : true,
                        flex       : 1,
                        anchor     : '100%',
                        fieldLabel : 'Test'
                    },
                    {
                        xtype   : 'textfield'
                    }
                ]
            },
            {
                xtype      : 'textfield',
                fieldLabel : 'Control'
            }
        ]
    });
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

  7. #7
    Sencha User macielcr7's Avatar
    Join Date
    Oct 2010
    Location
    Brasil
    Posts
    20
    Vote Rating
    0
    macielcr7 is on a distinguished road

      0  

    Default


    ok!... my version 4.1.0

Tags for this Thread