2017-10-14 49 views
0

我在我的餘燼應用程序中使用mdb。我爲輸入字段生成動態值。在UI中,值和標籤重疊。如何處理它?標籤和值在材料設計中與引導程序重疊

<div class="md-form"> 
    <i class="fa fa-user-o prefix grey-text iconSize"></i> 
    {{input type="text" id="firstName" class="form-control" value=model.firstName}} 
    <label for="firstName">First Name<i class="mandatoryIcon">*</i></label> 
</div> 

回答

0

試試這個:

didInsertElement() { 
    this._super(...arguments); 
    if (this.get('model.firstName') !== null) { 
    Ember.$('firstName').focus(); 
    } 
} 

你總是可以使用自動對焦功能屬性以及

{{input type="text" id="firstName" class="form-control" value=model.firstName autofocus=true}}