0

Can anybody tell how to add image in text field in sencha touch

I want to show image and textfield image User id

Thanks

user386430
  • 4,837
  • 13
  • 41
  • 45

1 Answers1

0

Use css to do this.

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

add property cls: 'imagefield' in your component.

Mohit Saxena
  • 1,439
  • 1
  • 12
  • 21