Provides the appropriate function arguments for the input function selected
by filterInput() or updateFilterInput().
Arguments
- x
The object being passed to
filterInput()orupdateFilterInput().- ...
Additional arguments passed to the method. See details.
Details
The following arguments are supported in ...:
- range
(Date, POSIXt). Logical. If
TRUE,args_filter_input()will provide the arguments for range date inputs. Only applies whenxis of classDateorPOSIXt.- textbox
(character). Logical. If
FALSE(the default),args_filter_input()will provide the arguments for select inputs.- choices_asis
(character, factor, logical). Logical. If
TRUE, the choices provided to select inputs will not be modified. IfFALSE(the default), duplicate values will be removed and the choices will be sorted. Only applies whenxis of classcharacter,factor, orlogical.- server
If
TRUE, indicates that the choices will be provided server-side. In this case, arguments are not computed forargs_filter_input(). Ignored inargs_update_filter_input().- args_unique
An optional named list of arguments passed to
unique(), called whenxis a character, factor, or logical,textbox = FALSE, andchoices_asis = FALSE.- args_sort
An optional named list of arguments passed to
sort(), which is called afterunique().