We want to use Orbeon Forms to build and run some forms, however these forms require some more explaining than is possible in the 'hint' or 'help' sections. ('hint' is supposed to be rather short, 'help' does not support any kind of formatting, as far as i can tell) Therefore, I'd like to put some HTML above or below some of the questions (controls).

Now, I know that there is an option that shows you the source and allows you to make changes. This is, however, quite complex for a non-technical person.

Is there a(nother) way of inserting pieces of HTML in a form?

Also, I have looked at ways of creating a control that outputs/shows HTML, however it seems that both XBL and the Java classes for XForms controls always assume that it should be bound to some variable that's also in the resulting XML document. (And I'd rather not have that, since it will just be clarifying text.) Though it could be that I overlooked another possible option in XBL or Java.

Is it possible to create a component that does not get bound to the XML instance? (That I can then use to create a control that provides HTML functionality.)

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

At this point, Form Builder doesn't support form authors entering a help message as HTML. If this were to be supported, you could imagine that the dialog to edit the help message somehow allows you to switch to an HTML mode, in which it would show an HTML editor. But right now, the help message is just plain text. What you can do is:

  1. Use HTML tags. You could type something like <i>This</i> is my <b>bold</b> message.
  2. Doing only #1, the tags will show in the help dialog, which of course isn't what you want. So edit the source of the form, and for the relevant control,

Change:

<xforms:output mediatype="text/html" ref="$form-resources/my-control/help"/>

Into:

<xforms:help>
    <xforms:output mediatype="text/html" ref="$form-resources/my-control/help"/>
</xforms:help>

This won't do anything to Form Builder, but will trigger the XForms engine into interpreting the help as HTML when you run the form. One caveat of this workaround is that since Form Builder doesn't know about this syntax, if you later change the control name, Form Builder won't change the name in the <xforms:output> and you'll have to do this manually. If you just need this in a couple of place, it might be an acceptable workaround. If you need this for every field, then it would be better to extend Form Builder to allow help message to be in HTML, as described earlier.

link|improve this answer
This is an interesting option. I haven't tried it yet, however it seems like a small enough modification that it is possible to explain this to a non-technical person, or maybe let them request the change after the form is finished. Is there any chance of this ending up in the Form Builder as a feature. Maybe an option to switch between text-only and HTML help text, or at least that the XForms engine understands this construct? – Danny Jan 13 at 15:38
As I write this, it isn't a feature we have planned to implement for the next release. But it isn't a large feature either, so it is something that could get done if we get this as a request from a client with a Development Support plan, or someone in the community contributes an implementation for this feature. – avernet Jan 15 at 5:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.