- This topic has 1 reply, 2 voices, and was last updated 11 months, 1 week ago by .
-
Topic
-
For
select_advanced
fields can we please have a way to set the ajax delay option for select2 viajs_options
for the field or a filter?https://select2.org/data-sources/ajax#rate-limiting-requests
I’ve tried adding it to
js_options
but it’s not working.array( 'name' => 'Author', 'id' => 'post_author', 'type' => 'user', 'field_type' => 'select_advanced', 'placeholder' => 'Select an Author', 'query_args' => array( 'role' => 'my_custom_role', 'number' => 10, ), 'js_options' => array( 'minimumInputLength' => 3, // Require this many characters before triggering the ajax request. 'ajax' => array( 'delay' => 10000, // Wait this many milliseconds before triggering the ajax request. ), ), ),
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.