hello –
First off, let me say the grid capability is outstanding! I came across this in the documentation near the bottom of the page, and its sort of confusing:
https://www.htmlelements.com/docs/grid-cell-edit/
dropDownList.addEventListener('change', function () {
change = true;
});
the line change = true;
is throwing an error since change
is not defined. i tried looking at (element) => {
but this is probably something a developer needs to look at since there are many items returned.
is the 'change'
listener even necessary? or is it just here for illustration?