Search found 3 matches

by micah.hainline
Tue Apr 16, 2013 4:55 pm
Forum: Common Problems
Topic: How can I disable inline editing of a tag's text while still allowing oxy_editor support?
Replies: 1
Views: 1151

How can I disable inline editing of a tag's text while still allowing oxy_editor support?

I have a tag in oxygen Author that I want to edit using a combo. I can do this, and I can also hide the text with the following css: mytag { visibility:-oxy-collapse-text; content: oxy_editor(type, combo, edit, "#text", values, "value1, value2", labels, "my label one, my lab...
by micah.hainline
Mon Apr 15, 2013 4:44 pm
Forum: Common Problems
Topic: Validating against an xml schema with a plugin
Replies: 10
Views: 5197

Re: Validating against an xml schema with a plugin

Either of the two options you outline would make sense. It's not a problem if it's registered with the SchemaFactory as long as it doesn't throw license exceptions, and it's not a problem if it's not registered at all. It's only a problem when it's registered and also doesn't work.
by micah.hainline
Fri Apr 12, 2013 11:33 pm
Forum: Common Problems
Topic: Validating against an xml schema with a plugin
Replies: 10
Views: 5197

Validating against an xml schema with a plugin

I have created a plugin for use in Oxygen Author. Inside that plugin I want to validate a piece of XML that I receive from the user, and so I use the standard SchemaFactory mechanism to do this: SchemaFactory schemaFactory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); Schema schem...