If there is a single select control on the create form, there is not enough space to display the list
Hello @NOLO ,
There is a restriction due to the modal page we use. Instead please use the configuration open_in_modal
to false
. If you would like to assign this configuration only to one CRUD form (e.g. not everywhere, you can use the setConfig function. For example for your case you can use it like this:
$crud->setConfig('open_in_modal', false);
Let me know if that worked for you.
Regards
Johnny
1 Like
It works for me, thanks Johnny!