1. #1
    Sencha User
    Join Date
    Oct 2011
    Location
    Noida, India
    Posts
    78
    Vote Rating
    0
    jiindal1988 is on a distinguished road

      0  

    Default Selectfield UI issue.

    Selectfield UI issue.


    Hello, I have created a form with a select field as one of the elements in it.

    When I navigate from one form panel to another (by clicking a image another panel is opened up), select field drop down mark is down on that panel.

    Code written for the form is as follows:

    var myform=new Ext.form.FormPanel({
    scroll: 'vertical',
    standardSubmit:true,
    items:[
    {
    html: 'Action Taken',
    },
    {
    xtype: 'textfield',
    name: 'action',
    },
    {
    html: 'Preconfigured comments',
    },
    {
    xtype: 'selectfield',
    useClearIcon: true,
    name: 'preconfiguredComments',
    options:[
    {
    text: 'Configuration1',
    value: 'Configuration1',
    },
    {
    text: 'Configuration2',
    value: 'Configuration2',
    },
    {
    text: 'Configuration3',
    value: 'Configuration3',
    },
    ],
    },
    {
    html: 'Comments',
    },
    {
    xtype:'textareafield',
    name:'comments',
    align:'center',
    },


    ],
    });

    new Ext.Panel({
    fullscreen: true,
    layout: 'fit',
    items: myform,
    dockedItems:[
    {
    xtype: 'toolbar',
    dock: 'top',
    height: '90',
    items: [
    {
    xtype: 'button',
    name: buttonText,
    text: buttonText,
    width: 130,
    handler: function()
    {
    //perform handler operation
    }
    },
    {
    xtype: 'spacer',
    },
    {
    xtype: 'button',
    name: 'cancel',
    text: 'Cancel',
    width: 110,
    handler: function()
    {
    // handler operations
    }
    }


    ]
    }
    ]
    });

    Any help is appreciated

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,582
    Vote Rating
    433
    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 do you want to do?
    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.