formular
formular copied to clipboard
Form builder for Ruby. Fast, Furious, and Framework-Agnostic.
1. ~~Error Notification Produce an error notification at the top of the form if there are any errors via `f.error_notification`.~~ 2. ~~Hints These are built into both bootstrap and foundation...
Hi @fran-worley ! I wonder what was the reason of introducing `html_blocks` instead of using methods. Blocks are flexible for sure, but if you want to override a block, you...
Consider such example: ``` class CustomBuilder < Formular::Builders::Bootstrap3 end model = OpenStruct.new(ble: "blargh", coll: [OpenStruct.new(name: 1, id: 3), OpenStruct.new(name: 2, id: 5)]) f = CustomBuilder.new(model: model, path_prefix: "blah" ).form(method: :post,...
Hi @fran-worley , consider such use case: you know that form is a `validable form` and you'd like to add `required: required` for all elements ot this form and perhaps...