Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Ensure your query has the appropriate filters in it to limit its result set when no text field value exists. You could even surround the query with an IF substitution checking if the text field has a value so it won't query unless text field value is supplied for example.1. How do I make sure the query for the select field does not run on page load but only on text field change?
I assume you mean with the Update On functionality provided by CB Core Fields Ajax; you can't. There's no feature to limit length. You could add such a limitation to your query field I suppose again using an IF substitution, but with a regexp operator to check if it has at least 3 characters.2. How do I make sure the select field only updates when at least 3 chars are entered in the text field?
3. How do I make sure the select field contains max. 10 entries?/quote]
Add a LIMIT statement to your SQL in your query select.
Please Log in or Create an account to join the conversation.