Web Component: j-DynamicValueList
j-DynamicValueList
This component is very special component. It can keep values for example Number
and at the same it can render another readable text
. This component is optimized for dynamic usage, so it needs to be linked with another component or part. This component works with array.
- jComponent
v19|v20
Configuration:
icon
{String}
icon for label e.g. home, cog, etc.label
{String}
label (default is HTML content)icon2
{String}
icon in the right box e.g. home, cog, etc. (default:angle-down
)placeholder
{String}
adds a placeholder textdisabled
{Boolean}
disables this componentfind
{String}
important link tofunction(el, next(value))
for binding a new valueread
{String}
a link tofunction(array_of_values, next(array_response))
for binding a readabletext
url
{String}
tries to bind a value viaAJAX()
, argument{0}
in URL is replaced by the valuehtml
{String}
Tangular template for rendering a value (default:{{ name }}
)remap
{String}
a remap function (default:null
), example:value.length ? value[0] : null
required
{Boolean}
enables "required" (default:false
)bind
{String}
a path to method or variable where will be binded loaded value (optional)dirsource
{String}
a link to methodfunction(search_string, next(items_arr))
or NEW: can contain URL for search in fhe formGET /api/partners/?q={0}
dircustom
{String/Boolean}
can contain a path to function(val, next(new_val)) or can be Boolean. This option can enable adding a custom value (value not defined in data-source)dirrender
{String}
a path tofunction(item, text)
(must return HTML for j-Directory), this function can affect list of items in j-Directorydirminwidth
{Number}
a minimum width for j-Directory, (default:200
)dirmaxwidth
{Number}
a maximum width for j-Directorydirplaceholder
{String}
a placeholder for j-Directorydirempty
{String}
adds an empty field for j-Directorydirkey
{String}
a key name for reading of text in dirsource (default:name
)dirvalue
{String}
a key name for reading of value in dirsource (default:id
)key
{String}
a primary key name (default: a value fromdirvalue
)- NEW
tapi
{Boolean}
enables callingTAPI()
insteadofAJAX()
(default: false)
AJAX usage
If the value
will be changed then the component performs AJAX
call automatically. Server must response with Array
.
<ui-component name="dynamicvaluelist" path="path.to.property" config="url:/users/?id={0};dirsource:GET /users/?search={0}"></ui-component>
Inline usage
If the value
will be changed then the component performs config.exec
for obtaining a readable text of a value.
<ui-component name="dynamicvaluelist" path="path.to.property" config="read:my_function"></ui-component>
<script>
function my_function(arr, next) {
// the component automatically pairs "response" with "arr"
next([{ id: 1, name: 'This text will be displayed as a value '}]);
}
</script>
Author
- Peter Širka petersirka@gmail.com
- License
Created
03. june 2020
Updated
03. april 2024
jComponent library
19 | 20
Version
v1
License
https://www.totaljs.com/license/
Dark mode
Yes
Responsive
Yes
Author
Peter Širka
Email
denisa@totalavengers.com