简体   繁体   English

Sencha Touch要求的字段中星号的行为

[英]Behavior of the asterisk in field required under Sencha Touch

我有一个简单的问题,但是对此没有找到答案。.您知道是否可以在标签的开头而不是Sencha Touch应用程序的末尾在字段中添加所需的星号吗?

Simply add the following to your sass: 只需将以下内容添加到您的sass中:

.x-field-required .x-form-label {
  &::after {
    content: '';
  }
  &::before {
    content: "*";
    display: inline;
  }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM