xforms

How to do something with selected values of an xforms:select every time they change?

不打扰是莪最后的温柔 提交于 2019-12-07 22:28:43
问题 I have this problem with XForms I am running on Orbeon Forms. I am using a fr:box-select control as follows: <fr:box-select bind="box-select-bind" id="box-select-control"> <xforms:action ev:event="xforms-value-changed"> <xxforms:variable name="selected-value" select="."/> <xforms:message level="modal">Hello:<xforms:output select="$selected-value" /> </xforms:message> </xforms:action> <xforms:itemset nodeset="instance('codes')/box-select/item"> <xforms:label ref="label"/> <xforms:value ref=

Is XRX the only full stack web application “framework” that's totally W3C?

强颜欢笑 提交于 2019-12-07 11:41:02
问题 XRX means an application where the front end is written entirely in XML dialects and the back end is written entirely in XML dialects and data is passed between them as XML over REST. Is it correct that this is the only web application stack that is composed solely of technologies maintained by the W3C? 回答1: I think the best way to answer this is that XRX the only web architecture that I am aware of that incorporates two important web standards: XQuery and XForms, to create portable web

Is anyone using XForms in their web applications?

萝らか妹 提交于 2019-12-07 03:05:43
问题 A few years ago we started playing around with XForms from the W3C for a web app which required hundreds of custom forms. As they aren't currently supported natively by the major browsers, what parsers/tools are you using on your projects today? I'm not really interested in plugins - this needs to be something server side that emulates XForms. 回答1: We use XForms for creating user interfaces for SOAP-based web services. Currently we settled with Chiba XForms engine (http://chiba.sourceforge

How to create Orbeon custom control XBL with predefined visibility, control name, default value?

不问归期 提交于 2019-12-07 01:43:31
I have created a custom control (hidden text box with some predefined value), where I want to set visibility=false() , controlName="Mycustom" , default value="This is my custom control" in XBL file. So that whenever we use that custom control from Orbeon Form Builder, it will come with all default values with no need to set anything. XBL: <xbl:xbl xmlns:xh="http://www.w3.org/1999/xhtml" xmlns:xf="http://www.w3.org/2002/xforms" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xxi="http://orbeon.org/oxf/xml

Is XRX the only full stack web application “framework” that's totally W3C?

你离开我真会死。 提交于 2019-12-05 17:52:12
XRX means an application where the front end is written entirely in XML dialects and the back end is written entirely in XML dialects and data is passed between them as XML over REST. Is it correct that this is the only web application stack that is composed solely of technologies maintained by the W3C? I think the best way to answer this is that XRX the only web architecture that I am aware of that incorporates two important web standards: XQuery and XForms, to create portable web applications. REST is not really a W3C standard per say, but an architectural style built around simple key-value

Is anyone using XForms in their web applications?

故事扮演 提交于 2019-12-05 07:15:27
A few years ago we started playing around with XForms from the W3C for a web app which required hundreds of custom forms. As they aren't currently supported natively by the major browsers, what parsers/tools are you using on your projects today? I'm not really interested in plugins - this needs to be something server side that emulates XForms. Tambet We use XForms for creating user interfaces for SOAP-based web services. Currently we settled with Chiba XForms engine ( http://chiba.sourceforge.net/ ), but Orbeon ( http://www.orbeon.com/ ) actually seems more mature. Both are server-side engines

Is XForms still a live standard?

ぐ巨炮叔叔 提交于 2019-12-05 01:35:37
The XForms standard page seemed to indicate that it was no longer live, and that html5 kinda sorta does the job now. Is this the case? I'm looking at storing heterogenous data nuggets as XML fragments - generating a editor page according to the datatype. ebruchez To add to Phil's answer: The XForms Working Group at W3C is active and currently working on XForms 2.0. See in particular the proposed 2.0 features on the wiki and the in-progress draft of the spec as of Feburary, 2012 . Also I don't think it's fair to say that HTML 5 "does the job". HTML 5 forms bring small and welcome improvements

Is XForms still a standard that is being implemented and developed, or is there an alternative in place or being developed?

给你一囗甜甜゛ 提交于 2019-12-04 17:02:24
问题 XForms was and/or is an XML markup that supports structured form data. It is a standard evolved from XML and was designed to be easily integrated into other current markup languages such as XHTML, ODF or SVG, or any "suitable markup language" as well as offer multi-platform and multi-browser support. More project goals are declared on the Working Group page I've linked below. As I was doing research for handling forms with php, I noticed the PHP Features page offers support for handling

Running Orbeon-Form-Builder-Generated-Form with Java Application

别来无恙 提交于 2019-12-04 06:23:36
问题 Should I be able to run Orbeon-Form-Builder-Generated-Form with Java Application, i.e. Copy the source of the Form into a simple.JSP (using separate deployment as mentioned in http://wiki.orbeon.com/forms/doc/developer-guide/xforms-with-java-applications) ? I found that the evaluation of $form-resources fails. Why ? simple.jsp XML <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http:/

XSD to XForms and XForms to XSD conversion

淺唱寂寞╮ 提交于 2019-12-03 15:39:33
Currently I am struggling with two problems: I am receiving from outer server an XSD file and based on this file I have to generate XForm. Usually the XSD file is importing many other XSD files and so on. I am writing a GUI with XForm builder. When the user builds his custom XForm I need to generate from it an XSD file and send it back to the outer server. Major question is: Is it possible to write those two converters which generate files and complies with the standard (XML Schema and XForms)? Do you know any existing library offering conversion between those two formats: XSD and XHTML? It is