reflex-dom icon indicating copy to clipboard operation
reflex-dom copied to clipboard

Web applications without callbacks or side-effects. Reflex-DOM brings the power of functional reactive programming (FRP) to the web. Build HTML and other Document Object Model (DOM) data with a pure f...

Results 83 reflex-dom issues
Sort by recently updated
recently updated
newest added

Hi, I have app using `mainWidgetWithHead headElement bodyElement`, `headElement` contains function to load stylesheet like the following: ``` styleSheet link = elAttr "link" (Map.fromList [ , ("rel", "stylesheet") , ("type",...

question
Medium Severity

In this [lpaste](http://lpaste.net/363787) 2 ways to initialize a RangeInput are compared: - `rangeInput $ def & attributes .~ constDyn ("value" =: "4" ...)` - `rangeInput $ def & rangeInputConfig_initialValue .~...

bug
High Severity

I've come across situations where `domEvent Load someImage` doesn't trigger for some images when there's many of them in the page. It seems to have the same fire/not-fire pattern in...

bug
High Severity

`manageHistory` currently maintains changes to the route internally but any other JS code listening for route events won't be notified when these updates happen. We can dispatch this event and...

enhancement
Low Severity

Add `Animationend` and `Transitionend` to the event tags.

enhancement
Medium Severity

I'm trying to upgrade few of our libraries to make it compatible to latest reflex & reflex-dom. I couldn't able to find the equivalent of HasPostGui in the latest version....

question
Medium Severity

Examples: ```hs import Reflex.Dom.Testing import Reflex.Dom.Testing (childButton, doClick) hspec $ do specify "constant rendering" $ do testRender (text "test1") `shouldBe` "test1" testRender (el "div" $ text "test2") `shouldBe` "test2" testRender...

enhancement
High Severity

I'd like to perform an action when any part of my `reflex-dom` application throws an action. I noticed that `Control.Exception.handle` at the top level doesn't seem to work, because apparently...

question
Low Severity

Hi, After migrating to the develop branch I can't find a way to use the "disconnect" functionality previously provided by `newEventWithTrigger`. The thing is that I need to trigger the...

question
Low Severity