I did the following to make a full page read-only, using Making an Entire Instance Read-Only:
<xforms:instance>
<form>
...
</form>
</xforms:instance>
<xforms:bind ref="instance('form-name')" readonly="true()"/>
But I have a requirement to enable just few fields. I tried such a code that was given for Multiple binds on a given node but was for the property "required". So this fails.
<xforms:bind ref="instance('form-name')/some-node" readonly="false()"/>
So, is there away to override the global read-only setting for the form instance for a few nodes alone?