Search code examples
extjssencha-touchsencha-touch-2

How to add an image in textfield in sencha touch


I want to add a small image in the text field in sencha touch. For example a small user icon in the username text field.


Solution

  • Create your textfield like this:

    {
        xtype: 'textfield',
        cls: 'username',
        fieldLabel : 'Username', // works for ExtJS
        label : 'Username' // works for Sencha Touch
    }
    

    and add this to your CSS

    .username .x-form-text, .username .x-form-field {
        background: url(http://upload.wikimedia.org/wikipedia/commons/thumb/1/12/User_icon_2.svg/48px-User_icon_2.svg.png) no-repeat left;
        background-size: contain;
        padding-left: 25px;
    }
    .username .x-form-field { /* Adding more padding for Sencha Touch only */
        padding-left: 50px;
    }