How to add an image in textfield in sencha touch [closed]

断了今生、忘了曾经 提交于 2019-12-11 09:31:55

问题


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.


回答1:


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;
}


来源:https://stackoverflow.com/questions/26447925/how-to-add-an-image-in-textfield-in-sencha-touch

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!