I\'ve been playing with Fabric.js a lot in the last few weeks, but regarding text fields I\'ve only found it possible to set the text on creation.
Is there any possible
Try this(this is from my application):
Text Color: textColor.onchange = function() { canvas.getActiveObject().setColor(this.value); canvas.renderAll(); }; function updateControls() { textControl.value = canvas.getActiveObject().getText(); } canvas.on({ 'object:selected': updateControls, });