Re: [Xsltforms-support] submit problem
Brought to you by:
alain-couthures
From: Ihe O. <ihe...@gm...> - 2012-10-31 06:33:48
|
On Tue, Oct 30, 2012 at 8:45 PM, Alain Couthures <ala...@ag...> wrote: > Hi Immanuel, >> >> However, I stuck at >> http://en.wikibooks.org/wiki/XForms/Search_Form which doesn't work on >> my setting (I am running eXist-db). >> I copied and pasted the example and added on top >> <?xml-stylesheet href="/xforms/xsltforms/xsltforms.xsl" type="text/xsl"?> >> >> The search form is displayed correctly, but a click on the Search >> button hasn't got any effect >> > To effectively watch what's going on, the better is to use a debugger > with a network profiler (I generally use the Firebug extension for > Firefox). This is the easiest way to locate an issue. >> Moreover, already at loading time of the page existdb emits these >> warnings: >> >> Warning: on line 3870 of xsltforms.xsl: >> The namespace axis starting at an attribute node will never select >> anything >> Warning: on line 404 of xsltforms.xsl: >> The attribute axis starting at an attribute node will never select >> anything > Those warnings have no consequence (I've heard about them already... and > I will look at how to avoid them). The warnings are from the XSLT processor. They are caused because the XSLT is trying to traverse axes (in this case the namespace and attribute axis) from a context node of type attribute. Since attributes never contain anything other than text, such a traversal will never return anything). It is worth looking at the XSLT to see if the intent of those statements is preserved. > The |