Published
Edited
Sep 26, 2022
Importers
Insert cell
# Multiple Input Form
Insert cell
Insert cell
function htmlForm(object = {}, title) {
let el = [];
for (const key in object) {
el.push(object[key]);
}

return html`${title ? '<h2>'+title+'</h2>' : ""}${el}`;
}
Insert cell
Insert cell
function callbackGenerators(object = {}) {
const ret = ({});
for (const key in object) {
ret[key] = Generators.input(object[key]);
}

return ret;
}
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more