[elm-discuss] Is elm-reactor actively maintained?

2017-07-11 Thread Casper Bollen
First of all, elm-reactor is a great tool! However, I was looking at the elm-reactor repository, and there seem to be a great number of issues that are not addressed. Can I expect changes of elm-reactor in the near future (like being able to specify an index.html file) or will it remain as it i

[elm-discuss] elm-reactor reloading after button click

2017-07-11 Thread Casper Bollen
Why does elm-reactor reloads a page after a button click?? Even when I have no events attached to the button, clicking still triggers a reload when using elm-reactor. -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this grou

[elm-discuss] Is there an Elm window.print()?

2017-07-07 Thread Casper Bollen
Is there an Elm way to implement window.print() without using a javascript port? -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to elm-discuss+unsubscr...@googlegr

[elm-discuss] Re: Date type not recognized

2017-06-27 Thread Casper Bollen
For example when I use: type alias Test = { date : Date } I get an Cannot find type Date error On Tuesday, June 27, 2017 at 3:00:30 PM UTC+2, Casper Bollen wrote: > > When I want to use the Date type, it isn't recognized. Isn't this type > automatically loaded with the cor

[elm-discuss] Date type not recognized

2017-06-27 Thread Casper Bollen
When I want to use the Date type, it isn't recognized. Isn't this type automatically loaded with the core libs?? -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [elm-discuss] Newbie program not working correctly

2017-06-23 Thread Casper Bollen
Of course, thanks! On Friday, June 23, 2017 at 1:37:08 PM UTC+2, Peter Damoc wrote: > > Hi Casper, > > Just force an empty value when the age is 0 > Like this: > https://ellie-app.com/3yrgPqxp52ha1/0 > > > On Fri, Jun 23, 2017 at 12:08 PM, Casper Bollen > wrote

[elm-discuss] Newbie program not working correctly

2017-06-23 Thread Casper Bollen
I wrote a small program as a newbie project in Elm: https://ellie-app.com/3ynWqjPcP87a1/0. In this program I calculate the correct input field according to the value in the model: view : Model -> Html Msg view model = let toInput attrs = input attrs [] ageInput

[elm-discuss] Elm GUI component library

2016-10-11 Thread Casper Bollen
I would love to use ELM as my client side language. However, a show stopper at the moment is the lack of a decent ELM GUI component library. Currently I am using webix an extremely simple to use library to create a complex one page application. I think it would be a great b