Larry Reid

Results 98 comments of Larry Reid

It looks like the Rails internals use string keys, and we use symbol keys. This could be causing all sorts of unexpected behaviour, and could require all sorts of extra...

Added the Bootstrap 5 label because we should take a look at this if we're making changes to the fundamental code.

This is a great suggestion! Thanks! We'd be happy to entertain a pull request (PR) to add this functionality. I expect we'd want floating labels to be turned on at...

This is a really interesting idea. Thanks! I'm a big fan of testing, and of good system tests, so this strikes a chord with me. Unfortunately, I haven't had much...

OK. No worries. Hopefully this week I'll make a chance to think about this and see what others have done. I think you second idea is also worth exploring, but...

I almost had myself convinced that the right thing was, in the Capybara test, to do something like this: ``` assert_selector "#desired_input_field.is-invalid + div.invalid-feedback", text: "expected text" ``` But I...

I don't disagree with your comments. The way the form is rendered is flexible. But most people's use of Capybara isn't testing that. Most importantly, I think, in this case,...

It looks like this was fixed with a commit, and the issue didn't get closed. Please re-open if I misunderstand.

Thanks @mike1o1 . It looks like you're right. As you might have seen in #361, we're pretty busy with the Bootstrap 4 version right now, but we'll keep this on...

Here's a specific example I'm having trouble implementing: I have a `has_many :team_members, through:` on the `Subject` model. I want to provide a simple user interface with a check boxes...