I have a simple question but I have no found response about it.. do you know if it is possible to add the required asterisk in the field at the beginning of the label instead of the end in a Sencha Touch app?
Simply add the following to your sass:
.x-field-required .x-form-label {
&::after {
content: '';
}
&::before {
content: "*";
display: inline;
}
}