dimanche 21 février 2016

Create a form select list in Ember 2.2

Hi I'm trying to create a select list as part of a login form. The form submits and passes the two input text values but doesn't see the select list.

<form id="form-login" {{action 'authenticate' on='submit'}}>
    <fieldset>
        {{input id='identification' value=identification placeholder='Username'}}
        {{input id='password' value=password placeholder='Password' type='password'}}

        <select id="language" name="language">
            <option value="ENG">English</option>
            <option value="">Not English</option>
        </select>
    </fieldset>

    {{#if errorMessage}}
    <div>
        <strong>Login failed:</strong> {{errorMessage}}
    </div>
    {{/if}}

    <button type="submit" class="btn btn-default">Login</button>
</form>

I tried these steps but it says they're deprecated and don't work? http://ift.tt/1kHLFnV

{{view "select" content=languages value=selectedLanguage}}

That's the only page on their documentation I could find?

Thanks!




Aucun commentaire:

Enregistrer un commentaire