grav-plugin-form icon indicating copy to clipboard operation
grav-plugin-form copied to clipboard

Grav Form Plugin

Results 115 grav-plugin-form issues
Sort by recently updated
recently updated
newest added

If you have a form with client side validation disabled and submit the form with errors, you cannot correct the errors and resubmit the form. An error is returned with...

When a button on a form has a URL it is wrapped in an anchor tag, this does not pass validation at validator.w3.org with the error "The element button must...

The current checkbox implementation has an invisible label which causes the form to add an ugly extra margin ![grafik](https://user-images.githubusercontent.com/6888294/94424052-dfb10600-0189-11eb-8879-695212a9bf58.png) ![grafik](https://user-images.githubusercontent.com/6888294/94424107-f8212080-0189-11eb-98d4-c73f15995626.png) The "real" label is placed right next to the input...

I have a page that adds two forms: 1. via twig include: `{% include "forms/form.html.twig" with { form: forms('testform') } %}` 2. via plugin aka `$this->grav['page']->addForms()` Now if I submit...

https://github.com/getgrav/grav-plugin-form/blob/fab75139696d15bc9be0438f6649fb1ee2161327/templates/forms/default/field.html.twig#L91-L92 The default field template explicitly sets `form_field_extra_wrapper_classes` in a way that can't be overridden in a child template due to the way Twig handles template inheritance. I'm currently writing...

See discussion here: https://github.com/getgrav/grav-plugin-form/commit/bff6b9dab5f7a33b9b0d1799a70c5e3bb05cda0f#commitcomment-45774353 I think this is still not correct when the form submission contains errors and the form is rendered again. This code will set `value` to `true`....

Hi Team I could not find the anyplace where I could declare the form template. I want to change the output html code of the fields. Is there a way...

When specifying the form in a different page and load it via twig, the url of the page gets loaded where the form is specified. ``` {% include "forms/form.html.twig" with...

See: https://stackoverflow.com/q/6320113/14348748 And: https://en.wikipedia.org/wiki/Post/Redirect/Get It would be nice to have an option to redirect to the same page using a statuscode of `303`. The form plugin has a `redirect` option...

I noticed the logic for showing labels using `show_label` isn't implemented as early as it should be. This means when labels aren't being shown, you still get the label wrapper...

enhancement