- From: John Boyer <boyerj@ca.ibm.com>
- Date: Wed, 22 Sep 2010 08:49:11 -0700
- To: "www-forms@w3.org" <www-forms@w3.org>
Received on Wednesday, 22 September 2010 15:50:42 UTC
This is an FYI: You can use the "type" model item property to validate a data node with a regex pattern expression, like this: <xforms:model> <schema targetNamespace="http://test.org" xmlns=" http://www.w3.org/2001/XMLSchema"> <simpleType name="alnum"> <restriction base="xsd:string"> <pattern value="[A-Za-z0-9]*"></pattern> </restriction> </simpleType> </schema> <xforms:instance xmlns="http://test.org"> <data> <node></node> </data> </xforms:instance> <xforms:bind nodeset="test:node" type="test:alnum"/> </xforms:model> Cheers, John Boyer
Received on Wednesday, 22 September 2010 15:50:42 UTC