mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.dataforms: Allow separation of options from values in list fields
This commit is contained in:
parent
01a15bfbe2
commit
99a7a645f1
1 changed files with 12 additions and 4 deletions
|
@ -69,10 +69,10 @@ function form_t.form(layout, data, formtype)
|
|||
end
|
||||
elseif field_type == "list-single" then
|
||||
local has_default = false;
|
||||
for _, val in ipairs(value) do
|
||||
for _, val in ipairs(field.options or value) do
|
||||
if type(val) == "table" then
|
||||
form:tag("option", { label = val.label }):tag("value"):text(val.value):up():up();
|
||||
if val.default and (not has_default) then
|
||||
if value == val.value or field.options and val.default and (not has_default) then
|
||||
form:tag("value"):text(val.value):up();
|
||||
has_default = true;
|
||||
end
|
||||
|
@ -80,17 +80,25 @@ function form_t.form(layout, data, formtype)
|
|||
form:tag("option", { label= val }):tag("value"):text(tostring(val)):up():up();
|
||||
end
|
||||
end
|
||||
if field.options and value then
|
||||
form:tag("value"):text(value):up();
|
||||
end
|
||||
elseif field_type == "list-multi" then
|
||||
for _, val in ipairs(value) do
|
||||
for _, val in ipairs(field.options or value) do
|
||||
if type(val) == "table" then
|
||||
form:tag("option", { label = val.label }):tag("value"):text(val.value):up():up();
|
||||
if val.default then
|
||||
if not field.options and val.default then
|
||||
form:tag("value"):text(val.value):up();
|
||||
end
|
||||
else
|
||||
form:tag("option", { label= val }):tag("value"):text(tostring(val)):up():up();
|
||||
end
|
||||
end
|
||||
if field.options and value then
|
||||
for _, val in ipairs(value) do
|
||||
form:tag("value"):text(val):up();
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue