I have a select for state selection. This select is populate by database value.
how can I have the null value if it is null also in the database?
Thank you @Teodor

Remove the hard-coded selected value, and it will work as required.
ok, but if I remove the code, when I open the page, select shows the first record ! In this case BELGIO
I want show a blank input !
I do not want to see any value, I would like the empty select
To select a blank entry by default, you will have to add a default blank entry.
Just add a blank item using the âaddâ icon, or add an empty <option value=""></option> in code view.

Or, even better, add the empty <option> as
<option value='-1'></option
and then set the Selected Value field to -1 (no quotes). So, when you have a value in database, it will get selected, else -1, which is blank.
ok, the first solution works great !
the second solution works very well !
Another question @nshkrsh
I have this select but the âTuttiâ value doesnât select all records (Cliente and Fornitore)

How can I do ?
I want see all records when I select Tutti
I tried with % but doesnât work
The way I did it in my app was that I set default âAll/Tuttiâ optionâs value as -1. Then, in my server action I added a condition in query builder condition tab that if parameter value is not -1, then filtered results are returned. Else, condition does not work and all data gets fetched from the query.
I hope you get it. 
I donât have access to my system right now, else would have attached an image.
when you can attach me an image, thank you !


