working on entry form

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2026-04-01 23:26:04 +02:00
parent 5dcd8be93a
commit 71f91f0f61
5 changed files with 124 additions and 3 deletions

View File

@@ -52,7 +52,6 @@
candidate = candidates[idx];
candidates = [];
selected = [];
console.log(candidate);
onSelect(candidate);
}
@@ -93,6 +92,7 @@
return false;
}
candidate = { display : candidate.display };
candidates = await getCandidates(candidate.display);
if (selected>candidates.length) selected = candidates.length;
return false;
@@ -103,7 +103,7 @@
span { position : relative }
select { position : absolute; top: 30px; left: 3px; }
select { background: black; color: orange; border: 1px solid orange; border-radius: 5px; }
select { background: black; color: orange; border: 1px solid orange; border-radius: 5px; z-index: 50; }
option:checked { background: orange; color: black; }
</style>