[Xsltforms-support] Input controls render on Chrome but not on Firefox 12.0 (running on Ubuntu)
Brought to you by:
alain-couthures
From: ihe o. <ihe...@go...> - 2012-05-22 07:03:38
|
<?xml version="1.0"?> <?xml-stylesheet href="../xsltforms/xsltforms.xsl" type="text/xsl"?> <html xmlns:html="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml" xmlns:xf="http://www.w3.org/2002/xforms" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:b2b="http://www.b2b.net/plants"> <head> <title>B2B.Net Plants System</title> <xf:model id="salesModel"> <xf:instance src="sales.xml"/> <xf:bind nodeset="/b2b:Sales/b2b:Client" id="salesClient" type="xsd:string"/> <xf:bind nodeset="/b2b:Sales/b2b:Date" id="salesDate" type="xsd:date"/> </xf:model> </head> <body> <xf:trigger id="Plants" appearance="compact"> <xf:label>Plants</xf:label> </xf:trigger> <xf:trigger id="Stock" appearance="compact"> <xf:label>Stock</xf:label> </xf:trigger> <xf:trigger id="Clients" appearance="compact"> <xf:label>Clients</xf:label> </xf:trigger> <xf:trigger id="Sales" appearance="compact"> <xf:label>Sales</xf:label> </xf:trigger> <br/> <xf:group ref="/b2b:Sales"> <fieldset> <legend>Sales Details</legend> <xf:input bind="salesClient"> <xf:label>Client: </xf:label> </xf:input> <br/> <xf:input bind="salesDate" appearance="compact"> <xf:label>Date: </xf:label> </xf:input> <br/> </fieldset> </xf:group> </body> </html> |