forked from snapappointments/bootstrap-select
-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Description
here is the code:
<FormGroup className="form-col-text-field">
<Row>
<Col lg={3}className="form-col-label-right">
<ControlLabel>Language</ControlLabel>
</Col>
<Col lg={9} className="form-col-text-field">
<BootstrapSelect id="language" className="form-col-select" onChange={this.handleChange.bind(this)} >
<optgroup>
{languages.map(lang =>(lang.sortTop==true?
<option key={lang.langCode} value={lang.langCode}>{lang.language}</option>
:null)
)};
</optgroup>
<optgroup>
{languages.map(lang =>(lang.sortTop==false||lang.sortTop==undefined?
<option key={lang.langCode} value={lang.langCode}>{lang.language}</option>
:null)
)};
</optgroup>
</BootstrapSelect>
</Col>
</Row>
</FormGroup>and this is how the react looks like
I'm also wondering where these ok signs come from:
Metadata
Metadata
Assignees
Labels
No labels


