Need to remove empty field in dropdown

0
Hi Experts, I Need to remove empty field in dropdown for the enum values.
asked
1 answers
7

Hi Peter,

Use the below code where add the remove-emptyfield as class for the enum dropdown which you are using in mendix.

.remove-emptyfield {
    select>option:first-child {
        display: none;
    }
}

 

It will work.

answered