<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for betterFORM</title>
	<atom:link href="http://betterform.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://betterform.wordpress.com</link>
	<description>the XForms way to build the web</description>
	<lastBuildDate>Mon, 17 Jun 2013 17:33:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on XForms model to model communication by When MVC becomes a burden for XForms &#8211; XML London 2013 &#124; Eric van der Vlist</title>
		<link>http://betterform.wordpress.com/2012/03/26/xforms-model-to-model-communication/#comment-2138</link>
		<dc:creator><![CDATA[When MVC becomes a burden for XForms &#8211; XML London 2013 &#124; Eric van der Vlist]]></dc:creator>
		<pubDate>Mon, 17 Jun 2013 17:33:10 +0000</pubDate>
		<guid isPermaLink="false">http://betterform.wordpress.com/?p=161#comment-2138</guid>
		<description><![CDATA[[&#8230;] Communications between the master form and the subform are done using either in memory submissions (ContextSubmissionHandler identified by a model: pseudo protocol), the instanceOfModel() function which gives access to instances from other models or custom events passing context information. [&#8230;]]]></description>
		<content:encoded><![CDATA[<p>[&#8230;] Communications between the master form and the subform are done using either in memory submissions (ContextSubmissionHandler identified by a model: pseudo protocol), the instanceOfModel() function which gives access to instances from other models or custom events passing context information. [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Modularizing forms by When MVC becomes a burden for XForms &#8211; XML London 2013 &#124; Eric van der Vlist</title>
		<link>http://betterform.wordpress.com/modularizing-forms/#comment-2137</link>
		<dc:creator><![CDATA[When MVC becomes a burden for XForms &#8211; XML London 2013 &#124; Eric van der Vlist]]></dc:creator>
		<pubDate>Mon, 17 Jun 2013 17:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://betterform.wordpress.com/?page_id=399#comment-2137</guid>
		<description><![CDATA[[&#8230;] are described, in the betterFORM documentation, as “a way to avoid redundancies and keep the documents [&#8230;]]]></description>
		<content:encoded><![CDATA[<p>[&#8230;] are described, in the betterFORM documentation, as “a way to avoid redundancies and keep the documents [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zaphod &#8211; betterFORM As Service (Cross Context Environment) by Farah Zareen</title>
		<link>http://betterform.wordpress.com/zaphod-betterform-as-service-cross-context-environment/#comment-1154</link>
		<dc:creator><![CDATA[Farah Zareen]]></dc:creator>
		<pubDate>Thu, 04 Apr 2013 03:07:14 +0000</pubDate>
		<guid isPermaLink="false">http://betterform.wordpress.com/?page_id=476#comment-1154</guid>
		<description><![CDATA[Hi,

We are trying to use Betterform Zaphod to convert our Betterforms XForms into HTML. I am having an issue here - I am initially on a page with URI: /forms/home which has few submit buttons, each with a different resource-uri. method=&quot;get&quot;, and submission replace=&quot;all&quot;. When i click a button from &quot;/forms/home&quot;, i submit a &quot;GET&quot; request to a resource-uri called &quot;/forms/getProfile&quot;and get an xForms response back. But, betterForm-Full.js seems to be handling replace=&quot;all&#039; by invoking fluxProcessor._handleBetterFormReplaceAll() that does a: window.open(window.location.href, &quot;_self&quot;);

In my case, window.location.href will be /forms/home, but i need to submit a request to /forms/getProfile. Since it is trying to send request to location.href, i am getting incorrect response back. So, i have a few questions here:

1. Why is it trying to submit to window.location.href. Based on the application, window.location.href could be different from the action/resource-uri the user wants to submit the request to.

2. Why is it making this second request to window.location.href when the first request on submit actually gets the response back? This is causing my application to make two requests - first one to the resource-uri of the submitted target (button clicked), and other through window.open(window.location.href, _self)

3. Is there a way to avoid this second request, if not how can i override window.location.href with the resource-uri of the button i clicked

Any responses would be appreciated.

Thanks,

Arshad]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>We are trying to use Betterform Zaphod to convert our Betterforms XForms into HTML. I am having an issue here &#8211; I am initially on a page with URI: /forms/home which has few submit buttons, each with a different resource-uri. method=&#8221;get&#8221;, and submission replace=&#8221;all&#8221;. When i click a button from &#8220;/forms/home&#8221;, i submit a &#8220;GET&#8221; request to a resource-uri called &#8220;/forms/getProfile&#8221;and get an xForms response back. But, betterForm-Full.js seems to be handling replace=&#8221;all&#8217; by invoking fluxProcessor._handleBetterFormReplaceAll() that does a: window.open(window.location.href, &#8220;_self&#8221;);</p>
<p>In my case, window.location.href will be /forms/home, but i need to submit a request to /forms/getProfile. Since it is trying to send request to location.href, i am getting incorrect response back. So, i have a few questions here:</p>
<p>1. Why is it trying to submit to window.location.href. Based on the application, window.location.href could be different from the action/resource-uri the user wants to submit the request to.</p>
<p>2. Why is it making this second request to window.location.href when the first request on submit actually gets the response back? This is causing my application to make two requests &#8211; first one to the resource-uri of the submitted target (button clicked), and other through window.open(window.location.href, _self)</p>
<p>3. Is there a way to avoid this second request, if not how can i override window.location.href with the resource-uri of the button i clicked</p>
<p>Any responses would be appreciated.</p>
<p>Thanks,</p>
<p>Arshad</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Modularizing forms by joernturner</title>
		<link>http://betterform.wordpress.com/modularizing-forms/#comment-540</link>
		<dc:creator><![CDATA[joernturner]]></dc:creator>
		<pubDate>Fri, 15 Feb 2013 18:05:16 +0000</pubDate>
		<guid isPermaLink="false">http://betterform.wordpress.com/?page_id=399#comment-540</guid>
		<description><![CDATA[Please use our mailinglist for such questions: https://lists.sourceforge.net/lists/listinfo/betterform-users]]></description>
		<content:encoded><![CDATA[<p>Please use our mailinglist for such questions: <a href="https://lists.sourceforge.net/lists/listinfo/betterform-users" rel="nofollow">https://lists.sourceforge.net/lists/listinfo/betterform-users</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Modularizing forms by Mark R. Salamon</title>
		<link>http://betterform.wordpress.com/modularizing-forms/#comment-536</link>
		<dc:creator><![CDATA[Mark R. Salamon]]></dc:creator>
		<pubDate>Fri, 15 Feb 2013 12:46:10 +0000</pubDate>
		<guid isPermaLink="false">http://betterform.wordpress.com/?page_id=399#comment-536</guid>
		<description><![CDATA[perhaps this is the wrong place to ask, but can you do cascading dropdowns with betterform?]]></description>
		<content:encoded><![CDATA[<p>perhaps this is the wrong place to ask, but can you do cascading dropdowns with betterform?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Aeronautical Information Services (AIS) and XForms by joernturner</title>
		<link>http://betterform.wordpress.com/2011/10/12/aeronautical-information-services-ais-and-xforms/#comment-248</link>
		<dc:creator><![CDATA[joernturner]]></dc:creator>
		<pubDate>Tue, 08 Jan 2013 09:50:15 +0000</pubDate>
		<guid isPermaLink="false">http://betterform.wordpress.com/?p=571#comment-248</guid>
		<description><![CDATA[We used XSLT to build a generator that converted the schemas into xforms. This was not a single-step transform but several transformations building on each other. This normally can&#039;t be done without some &#039;special case&#039; handling. E.g. there are constructs in some schemas that cannot be automatically (or generically) be transformed into a UI. In these cases you have to help the generator by adding special templates. Building such generator is an incrementatl process which make take some days but that effort is still not comparable to hand-coding all forms. If you&#039;d like to learn more please don&#039;t hesitate to contact us at info at betterform dot de.]]></description>
		<content:encoded><![CDATA[<p>We used XSLT to build a generator that converted the schemas into xforms. This was not a single-step transform but several transformations building on each other. This normally can&#8217;t be done without some &#8216;special case&#8217; handling. E.g. there are constructs in some schemas that cannot be automatically (or generically) be transformed into a UI. In these cases you have to help the generator by adding special templates. Building such generator is an incrementatl process which make take some days but that effort is still not comparable to hand-coding all forms. If you&#8217;d like to learn more please don&#8217;t hesitate to contact us at info at betterform dot de.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Aeronautical Information Services (AIS) and XForms by Christian Bosson (@christianbosson)</title>
		<link>http://betterform.wordpress.com/2011/10/12/aeronautical-information-services-ais-and-xforms/#comment-246</link>
		<dc:creator><![CDATA[Christian Bosson (@christianbosson)]]></dc:creator>
		<pubDate>Tue, 08 Jan 2013 01:11:28 +0000</pubDate>
		<guid isPermaLink="false">http://betterform.wordpress.com/?p=571#comment-246</guid>
		<description><![CDATA[Very interesting post, thank you !
I have a question : you said &quot;The whole user interface (...) is generated from the XML Schema resulting in (...) separate XForms documents (...)&quot;. How did you do that ? Is it a generic or automated method to do it ?
I am currently evaluating XForms with a sample application, for which I have defined a relatively complex XML Schema. I find very painful to have to write instances, bindings and UI elements for each complex types of my schema in my forms (and to update them when my schema is evolving !).
I would be very interested to know a little more about your experience on that problem.
Thanks in advance !]]></description>
		<content:encoded><![CDATA[<p>Very interesting post, thank you !<br />
I have a question : you said &#8220;The whole user interface (&#8230;) is generated from the XML Schema resulting in (&#8230;) separate XForms documents (&#8230;)&#8221;. How did you do that ? Is it a generic or automated method to do it ?<br />
I am currently evaluating XForms with a sample application, for which I have defined a relatively complex XML Schema. I find very painful to have to write instances, bindings and UI elements for each complex types of my schema in my forms (and to update them when my schema is evolving !).<br />
I would be very interested to know a little more about your experience on that problem.<br />
Thanks in advance !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What&#8217;s XForms authoring? by Madhav (@madhavb)</title>
		<link>http://betterform.wordpress.com/whats-xforms-authoring/#comment-146</link>
		<dc:creator><![CDATA[Madhav (@madhavb)]]></dc:creator>
		<pubDate>Thu, 18 Oct 2012 09:35:58 +0000</pubDate>
		<guid isPermaLink="false">http://betterform.wordpress.com/?page_id=346#comment-146</guid>
		<description><![CDATA[Is the experimental XForm editor bundled in the limegreen-4.1 installer? I am able to see the small circle which when I click opens it in browser for view (not editable). And there is no option for editor, am I missing something here?]]></description>
		<content:encoded><![CDATA[<p>Is the experimental XForm editor bundled in the limegreen-4.1 installer? I am able to see the small circle which when I click opens it in browser for view (not editable). And there is no option for editor, am I missing something here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Subforms with betterFORM by rockeyjohn999</title>
		<link>http://betterform.wordpress.com/2010/08/16/using-subforms-with-betterform/#comment-145</link>
		<dc:creator><![CDATA[rockeyjohn999]]></dc:creator>
		<pubDate>Sat, 13 Oct 2012 10:47:56 +0000</pubDate>
		<guid isPermaLink="false">http://betterform.wordpress.com/?p=101#comment-145</guid>
		<description><![CDATA[Nice article.Pros and cons are explained very well. We can divide the sample form into sub forms.Sb forms are just like X forms.

&lt;a href=&quot;http://www.sampleforms.net/&quot; rel=&quot;nofollow&quot;&gt;Free sample forms&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>Nice article.Pros and cons are explained very well. We can divide the sample form into sub forms.Sb forms are just like X forms.</p>
<p><a href="http://www.sampleforms.net/" rel="nofollow">Free sample forms</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What&#8217;s XForms authoring? by joernturner</title>
		<link>http://betterform.wordpress.com/whats-xforms-authoring/#comment-137</link>
		<dc:creator><![CDATA[joernturner]]></dc:creator>
		<pubDate>Mon, 09 Jul 2012 15:29:20 +0000</pubDate>
		<guid isPermaLink="false">http://betterform.wordpress.com/?page_id=346#comment-137</guid>
		<description><![CDATA[You cannot open it from within a form but from the betterFORM dashboard. There are 2 little circles on the right side of each form document. When you hover the left one of these you should see a very little icon. Click it to open the editor.]]></description>
		<content:encoded><![CDATA[<p>You cannot open it from within a form but from the betterFORM dashboard. There are 2 little circles on the right side of each form document. When you hover the left one of these you should see a very little icon. Click it to open the editor.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
