ngx-inline-editor
ngx-inline-editor copied to clipboard
Select input value is always prefixed with "<index>: "
When using the { value :
Example:
Using
[
{ "value" : "val1", "text" : "val1" },
{ "value" : "val2", "text" : "val2" },
{ "value" : "val3", "text" : "val3" }
]
will yield the select control as if using
[
{ "value" : "0: val1", "text" : "val1" },
{ "value" : "1: val2", "text" : "val2" },
{ "value" : "2: val3", "text" : "val3" }
]