HI All,
I have been trying to create a property group which will allow me to select a 'document type' from drop down list I.E. Invoice, Proposal, FAQ, Quote etc
Anyway every time I try and upload the XML file I get the error message 'Missing = in namespace decl. (CustomNodes.cnd, line 1)'
What does this mean or rather what am I doing wrong? I have tried looking for a solution but can't find any information anywhere... I've tried changing the code but can't see what the problem is!
Can someone point me in the right direction please
Here is the code I'm using:
I have been trying to create a property group which will allow me to select a 'document type' from drop down list I.E. Invoice, Proposal, FAQ, Quote etc
Anyway every time I try and upload the XML file I get the error message 'Missing = in namespace decl. (CustomNodes.cnd, line 1)'
What does this mean or rather what am I doing wrong? I have tried looking for a solution but can't find any information anywhere... I've tried changing the code but can't see what the problem is!
Can someone point me in the right direction please
Here is the code I'm using:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE property-groups PUBLIC "-//OpenKM//DTD Property Groups 1.0//EN"
"http://www.openkm.com/dtd/property-groups-1.0.dtd">
<property-groups>
<property-group label="Document" name="okg:document">
<Select label="Doctype" name="okp:document.doctype" type="multiple">
<option label="Invoice" value="okp:document.doctype.invoice"/>
<option label="FAQ" value="okp:document.doctype.faq"/>
</select>
</property-group>
</property-groups>
Code: Select all
Any help would be greatly appreciated<okm = 'http://www.openkm.org/1.0'>
<okg = 'http://www.openkm.org/group/1.0'>
<okp = 'http://www.openkm.org/group/property/1.0'>
[okg:document] mixin
- okp:document.doctype (string) = '' multiple autocreated
- okp:document.doctype.invoice (string) = '' autocreated
- okp:document.doctype.faq (string) = '' autocreated