Wait! Looks like we don't have enough information to add this to bug database. Please follow this template bug format.
  1. #1
    Sencha User
    Join Date
    May 2011
    Posts
    4
    Vote Rating
    0
    liyf.008 is on a distinguished road

      0  

    Default fieldset padding differences between IE and FF.

    fieldset padding differences between IE and FF.


    when i set the padding value in a fieldset, the height of this fieldset shows differences between IE/FF and chrome.

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,666
    Vote Rating
    435
    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 Ext JS 4 version?
    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
    Join Date
    May 2011
    Posts
    4
    Vote Rating
    0
    liyf.008 is on a distinguished road

      0  

    Default


    Ext version tested:
    • Ext 4.1.0-gpl
    Browser versions tested against:

    • Browser versions tested against:
      • Firefox 8.0.1
      • Chrome 18.0.1025.142 m
      • IE9
    Code:
        • var fieldsetTestForm = Ext.create('Ext.form.Panel', {
      renderTo: 'docbody', title : 'xxxx', height: 310, width : 600, bodyPadding: 10, defaults: { anchor: '100%', labelWidth: 100 }, items:[{ xtype:'fieldset', title: 'xxx', collapsible: true, // padding : '2 5 0 0', defaultType: 'textfield', layout: 'anchor', defaults: { anchor: '100%' }, items :[{ fieldLabel : 'xxxx', name : 'zgbh', allowBlank : false },{ fieldLabel : 'xxx', name : 'zgno', allowBlank : false },{ fieldLabel : 'xx', name : 'zgunit', allowBlank : false },{ fieldLabel : 'xx', name : 'zgzy', allowBlank : false },{ xtype: 'datefield', fieldLabel : 'xx', name : 'zgdate', format:'Y-m-d', allowBlank : false
    • }] },{ xtype:'fieldset', title: 'xxx', collapsible: true, // padding : '5 5 0 0', defaultType: 'textfield', layout: 'anchor', defaults: { anchor: '100%' }, items :[{ fieldLabel : 'xx', name : 'zcbh', allowBlank : false },{ fieldLabel : 'xxxx', name : 'zcunit', allowBlank : false },{ xtype: 'datefield', fieldLabel : 'xx', name : 'zcdate', format:'Y-m-d', allowBlank : false }] }]
        • });