From 252e1469364421dcfcd8aa5ed786b46723ca6061 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 26 Sep 2023 16:14:54 +0200 Subject: [PATCH] add 'inline_form_validation' option to validate inline forms with custom algo --- docs/crud/configuration.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/crud/configuration.md b/docs/crud/configuration.md index 32f981e..caadd07 100644 --- a/docs/crud/configuration.md +++ b/docs/crud/configuration.md @@ -110,6 +110,7 @@ All fields have these options: | `href` | `string | callable` | `null` | Data to generate a link | | `href_attr` | `array | callable` | `null` | Attributes of the link | | `inline_form` | `null | callable` | `null` | A method to define a form to edit datas | +| `inline_form_validation` | `null | callable` | `null` | A method to define a custom form validation callback | ```php-inline title="Example #0"