Guest padukka Posted November 30, 2007 Report Share Posted November 30, 2007 Hi! all,I'm new to XSD. I wanna know what is the syntax which enables an element can be left blank(value)?XML<example></example>Thanx in advance...Janaka Quote Link to post Share on other sites
boen_robot 107 Posted November 30, 2007 Report Share Posted November 30, 2007 Yes. By defining an xs:restriction (with whatever is the original base type) that uses the xs:minLength element with a value of 0. Read more about Schema's restrictions if you didn't understand what I just said. Quote Link to post Share on other sites
cdesai 0 Posted December 31, 2007 Report Share Posted December 31, 2007 You can use <restriction> mark up to do the same.Here is the code...Assuming you know some basics of XML Schema. <xs:element name="example"> <xs:simpleType> <xs:restriction> <xs:maxLength value="0"/> </xs:restriction> </xs:simpleType></xs:element> element tag: use to define element name.simpleType tag: use to define element with no child element and no attributes.restriction tag: use to put some constraint on value of element.maxLength tag: they are like Methods which can handle value of the element.nJoy your work...Always!!! Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.