Unable to get the value of a select input

i have a select binded to a list queries from database , im trying get the current item value from the select.value , it doesn’t return any value.

WORKAROUND

After days of trying , i made it work by adding content. to the select.value from the app connect picker

Can you give some screenshots and code snippets so we can see what you have and how you’ve done it?

i am using the select value to filter a query.
when it’s this way ,it doesn’t return results

but when i add content. to it , it returns return value

2select

What server model is this?

nodejs

If you are selecting the expression via picker in the content page where company_select exists, there is no need for content.
But if you are trying to access this select’s value in the layout page, you need content in the expression.

The picker usually always generates expression with content. Could be a bug in the picker in this case. Maybe share a bit more about the organisation of pages & where you are trying to bind this.

i am selecting it in the layout page…before it used to add content by itself… if i bind to text it works perfectly… but using it to filter a query it doesn’t, until i manually add content

1 Like

Definitely a bug then.
And adding content. to the expression is the right syntax.

1 Like