Fork me on GitHub
#reagent
<
2016-02-29
>
martinklepsch05:02:51

@juhoteperi: thanks that sounds like a likely fix

thomas11:02:10

just wondering… how do I make a textarea read only. not sure where I should add the readonly attribute. TIA

maio11:02:46

@thomas: probably like [:textarea {:readonly "true"} ....]

thomas11:02:45

@maio that is what I tried… but when I add that to my code I get a warnUnknownProperty 😞

pepe11:02:09

@thomas: try to find react name it could be like readOnly

pepe11:02:35

I had similar problem with svg attrs, which got solved with this

thomas11:02:46

@pepe that solved my problem!!!! simple_smile

thomas11:02:50

Thank you!!!

hjrnunes14:02:42

I’m trying to get react-bootstrap to work with reagent

hjrnunes14:02:05

I’ve managed to get things sort of working with "adapt-react-class"

hjrnunes14:02:35

but I get a few warnings: Warning: owner-based and parent-based contexts differ (values: undefined vs navbar) for key ($bs_navbar_bsClass) while mounting NavbarHeader (see: http://fb.me/react-context-by-parent) react.inc.js:19588 Warning: owner-based and parent-based contexts differ (values: undefined vs navbar) for key ($bs_navbar_bsClass) while mounting NavbarBrand (see: http://fb.me/react-context-by-parent)

hjrnunes14:02:33

not sure what to do

hjrnunes14:02:47

I got it kinda sort of working… 😕