FormValueWidget keeps in sync the readOnly property of its valueNode attach point with the readOnly property of the widget itself: https://github.com/ibm-js/delite/blob/0.5.1/FormValueWidget.js#L68. But this mechanism doesn't take into account the case of widgets with an inputNode distinct from the valueNode (for instance, valueNode being a hidden input element, while inputNode being a non-hidden input).
FormValueWidget keeps in sync the
readOnly
property of itsvalueNode
attach point with thereadOnly
property of the widget itself: https://github.com/ibm-js/delite/blob/0.5.1/FormValueWidget.js#L68. But this mechanism doesn't take into account the case of widgets with aninputNode
distinct from thevalueNode
(for instance,valueNode
being a hidden input element, whileinputNode
being a non-hidden input).