You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How do I add a table reactively (without using expression sorcery to remake the page each time)?
This is my handle. Any help would be appreciated.
handle(w, "press") do (file,stocks)
include(file)
@js_ w (@var k = document.createElement("TABLE");
@var r1 = k.insertRow(0);
document.table.appendChild(r1);
document.body.appendChild(r1);
)
end
I have been able to connect to inputs, display text, and refresh the screen, but tables don't seem to show up for some reason.
The text was updated successfully, but these errors were encountered:
Really liking this package so far. Awesome job.
How do I add a table reactively (without using expression sorcery to remake the page each time)?
This is my
handle
. Any help would be appreciated.I have been able to connect to inputs, display text, and refresh the screen, but tables don't seem to show up for some reason.
The text was updated successfully, but these errors were encountered: