Skip to content
Advertisement

Unpredictable state change

I am dynamically creating mathlive fields and adding them to the DOM.

Though it isn’t a good way but doing it like this because I wasn’t able to add the element as a React component and I needed a workaround quickly

Now when I remove an element from array responsible for rendering the elements, it works as expected but when the input event is fired on any of the remaining mathlive fields, the array comes back into the previous state before the element was removed.

JavaScript

Rmoving the last option from the options array

JavaScript

Rendering elements

JavaScript

Advertisement

Answer

The problem is solved by changing the input listener to blur. The issue was that I was always modifying the options array on every input (which is still weird why it wasn’t working with that?). Now the options are modified after the blur event is fired on the mathfield.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement