In Sencha touch version 2.3.0 we have xtype:'datepickerfield' for which we have a default bar that indicates the selected date.
This selection blue bar can be modified using following css property.
.x-picker-bar {
background: rgba(247, 109, 48, 0.6);
}
Now we have another component with xtype:'selectfield'. I want to implement this bar to this component as well. How can this be implemented? Any suggestions?