I had to write a “simple” javascript iterating through all the existing form elements, check if its a text input, and enable/disable it based on action. Googled “javascript iterate form element“, pulled out this piece of code and it works fabulously on Firefox. Great, simple 5 min job.
var e = document.getElementById(”my-form”).elements;
for(i in e) {
[...]