Hide Lookup field drop-down radio

Hi,

How do I hide the radio button on a lookup field? I think a CSS approach would be more ideal, this way I can style the field to my liking as well.

Here is an example:

image

Hello @DryChips,

You can style the dropdown's select button and its icon using the CSS:

.k-combobox .k-dropdown-wrap .k-select, .k-combobox .k-select {
    background: white;
    color: #7b7b7b;
}

I wouldn't recommend hiding the button completely, because users won't be able to open the drop-down list.

Thank you!

I actually don't want users to interact with the field at all. The field is being auto-populated so users will only see one value in that field.

1 Like