如何在文字中添加图像

时间:2015-09-04 09:35:14

标签: sencha-touch sencha-touch-2 sencha-architect

任何人都可以告诉如何在sencha touch

的文本字段中添加图片

我想显示图片和文字字段  图像用户ID

由于

1 个答案:

答案 0 :(得分:0)

使用css执行此操作。

.imagefield .x-form-field {
  background: url(../icons/icon.png) no-repeat;  /*your file path*/
  background-size: contain;
 }

添加属性cls:' imagefield'在你的组件中。

相关问题