Hi Jeremy,

The XForms implementation in OXF generates HTML forms and (post 1.5.2)
some simple JavaScript. You can check the 1.5.2 examples (without
JavaScript) online here:

http://www.orbeon.com/oxf/examples/

The JavaScript code generated in the upcoming version is pretty simple
and limited to accessing some form elements through the DOM. For
example:

onclick="var l = document.forms[0].elements.length; var ok; var i; i =
  0; for (i = 0, ok = false; i < l; i++) if
  (document.forms[0].elements[i].name == 'form/action') { ok = true;
  break; } if (ok) document.forms[0].elements[i].value = 'search';
  else alert('Hidden field for form/action not found');
  document.forms[0].submit(); return false;"

There is detailed information about Pocket IE features here:


http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnppc2k/html/ppc_dev.asp


This says that the "Internet Explorer 3.02 DOM" is supported. Whatever
that means, I would guess that what we do should either work directly
on Pocket IE, or we should be able to modify the code to make it
work. Please let us know if we can be of further assistance.

-Erik

Jeremy Johnson wrote:

> I'm looking for a server-side XForms implementation that would render
> XForms into HTML and JavaScript compatible with the Pocket PC 2002's
> version of Internet Explorer.
>
> Does anyone know if OXF can dynamically transform arbitrary XForms into
> content digestable on the PPC?  Could anyone direct me to an OXF-based
> site that I could use for such a test?
>
> thanks,
>
>   .: [EMAIL PROTECTED] :.
> .: interactive.media.technology.center :.
>   .: georgia.institute.of.technology :.

_______________________________________________
oxf-users mailing list
[EMAIL PROTECTED]
http://mail.orbeon.com/mailman/listinfo/oxf-users

Reply via email to