GithubHelp home page GithubHelp logo

Comments (4)

tolgap avatar tolgap commented on July 23, 2024 1

@pdarden I ended up writing a helper function for it. For brevity, I will post a field in from my source code:

phoneFormField : Model -> Html Msg
phoneFormField model =
    let
        phone =
            Form.getFieldAsString "phone" model.form
    in
        Textfield.render Mdl
            [ 2 ]
            model.mdl
            [ Textfield.text_
            , Textfield.label "Phone number*"
            , Textfield.floatingLabel
            , Textfield.value <| Maybe.withDefault "" phone.value
            , Utils.onMaterialInput FormMsg phone.path
            , Utils.onMaterialFocus FormMsg phone.path
            , Utils.onMaterialBlur FormMsg phone.path
            ]
            []


onMaterialInput : (Form.Msg -> msg) -> String -> Options.Property c msg
onMaterialInput msg path =
    Options.onInput <| msg << Form.Input path Form.Text << Form.Field.String


onMaterialFocus : (Form.Msg -> msg) -> String -> Options.Property c msg
onMaterialFocus msg path =
    Options.onFocus << msg <| Form.Focus path


onMaterialBlur : (Form.Msg -> msg) -> String -> Options.Property c msg
onMaterialBlur msg path =
    Options.onBlur << msg <| Form.Blur path

I hope this will help you further

from elm-form.

tolgap avatar tolgap commented on July 23, 2024

After reading the source code multiple times, I figured it out.

This is the new way:

Options.onInput <| FormMsg<< Form.Input phone.path Form.Text << Form.Field.String

from elm-form.

pdarden avatar pdarden commented on July 23, 2024

@tolgap How did you get onFocus and onBlur working?

from elm-form.

pdarden avatar pdarden commented on July 23, 2024

@tolgap Thank you!

from elm-form.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.