Dave Glick

Results 434 comments of Dave Glick

Another reminder to be careful about adding the icon as a child component - see #28. If the component with `IHasIconExtensions` generates a wrapping component that should actually contain the...

Can you post an example of the form code, what you're seeing, and what you would expect to see? It doesn't have to be complete, just enough so that I...

Sorry, took me a bit to get to this. This behavior is by design, and matches what ASP.NET MVC does without FluentBootstrap. When you call `@Html.ValidationSummary()` an empty container element...

Ah, okay. That makes sense. Have you tried: ``` @Bootstrap.ValidationSummary().EnsureFormGroup(false) @Bootstrap.EditorFor(m => m.Username) @Bootstrap.EditorFor(m => m.Email) ```

Try passing in `new HtmlString("...")` where you would normally pass in the content. Does that help? If not, care to post an example so I can take a closer look?

Haven't quite gotten to it yet. I was on the verge of shipping a new version of another OSS project so that took all my free cycles. I'll try to...

I finally had a chance to take a close look at this. Unfortunately, I don't think what you want can be achieved right now. Most components are really flexible and...

I'll leave this issue open as a reminder to revisit later.

What's the deal here: https://github.com/NancyFx/Nancy/blob/master/test/Nancy.Tests.Functional/Tests/TracingSmokeTests.cs Noticed it while getting all the other tests in this project to pass. It passes now, but as far as I can tell it's functionally...

Yeah, it's unfortunate. That's a result of my strategy to sit on top of the MVC host instead of rolling a custom one. The MVC Razor bits are tightly coupled...