Cyrix

Results 26 comments of Cyrix

@open-admin-org Ok I see the 'sortable' key is handled by a trait, My suggestion is just a coalesce handler on the options['sortable'] check ![image](https://github.com/open-admin-org/open-admin/assets/124294361/8cbf02f4-3564-45e1-826b-7b8a45de6fda) This sorts the error OpenAdmin\Admin\Form\Field\Traits\Sortable

Hi there, I have actually built an application from open-admin that will utilize s3, I will see what I can come up with and revert, I'll be starting on the...

copy that error, run it through gpt, it will tell you what you can do, else google it, i had a similar issue regarding postgresql and doctrine, i just changed...

Hi, $form->html("input name='your_html_input'>"); //Or put your html into a view and view('your-view')->render(); //Register column with form $form->hidden('your_db_column'); $form->saving(function($form){ $form->your_db_column = $form->input("your_html_input") }); just dd($form) in the saving hook and check...

Hi there, just an update, i had to do something similar to this, i found that HTML tags are ignored, i have not yet figured out why, though select tags...

You can use a hook to provide custom validation and a response you can set validation rules Please refer to the documentation regarding Form callback and Form validation