javascript - xtype: filefield not displaying properly -
i had popup looks :
items : [{      xtype: 'form',     title: 'upload photo',     width: 400,     bodypadding: 10,     frame: false,     renderto: ext.getbody(),     items: [{         xtype: 'filefield',         name: 'photo',         fieldlabel: 'photo',         labelwidth: 50,         msgtarget: 'side',         allowblank: false,         anchor: '100%',         buttontext: 'select photo...'     }] }] i copied example in sencha docs when run it, gives me :

instead of :

my concern button 'choose file' displayed instead of 'select photo'
how can solve this.. ?
solved problem... @evan-trimboli mentioned, css conflict. run sencha app build command project , work fine..
help helping others
Comments
Post a Comment