Display select type fields as drop down in search component

This is a bit out of control :joy:

1 Like

@tim.young, I encountered the same issue. It would be nice for an alternative display option but I don’t want to be too greedy :slight_smile:

1 Like

This is a temporary solution to tidy things up a bit

.field-val-val{
    columns: 3;
}
.tb-checkbox{
    text-align: left!important;
    display:block;
}

3 posts were split to a new topic: Create URL containing record ID

I am also looking for an alternative!

I would love for a dropdown where users can type and see the selection (see example below).

Screen Shot 2020-10-02 at 5.52.58 PM

1 Like

And here is what happens if you select multiple:
Screen Shot 2020-10-02 at 5.53.15 PM

That’s a cool idea!

You might be able to implement something with JavaScript that does something similar.

For what it’s worth, the example I posted in the original post is now being displayed as a drop down because I created separate data tables for the 3 criteria I’m searching by. In the table I’m searching, those 3 fields are now connections to their own data table.

Thanks for sharing, Tim!

That makes sense for a unique selection (only 1 state)

For my use case, I need users to be able to select more than 1 option (neighborhoods), so I will need to look further into it.

I’ll post here if I am ever able to work around it though!

1 Like

Hey @Chem, I found this while researching options and was wondering if you have any ideas?