This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xf:group | |
ref="instance('objects')"> | |
<xf:select | |
ref="object" | |
appearance="full"> | |
<!--@bug il existe l'attribut selection="open" pour ces cas mais il ne semble pas fonctionner. Il permet de préciser une valeur qui ne serait pas dans la liste.--> | |
<!-- https://sourceforge.net/p/xsltforms/mailman/message/24465876/ --> | |
<xf:label>Objet de l'expertise</xf:label> | |
<xf:item> | |
<xf:label>Maison</xf:label> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html | |
xmlns="http://www.w3.org/1999/xhtml" | |
xmlns:xf="http://www.w3.org/2002/xforms" | |
xmlns:ev="http://www.w3.org/2001/xml-events"> | |
<head> | |
<meta | |
charset="UTF-8"/> | |
<title>Copy Item</title> | |
<xf:model> | |
<xf:instance |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare | |
%rest:path("/testNamespace") | |
%output:method("xml") | |
function test() { | |
(processing-instruction xml-stylesheet {'href="static/xsltforms/xsltforms/xsltforms.xsl"', 'type="text/xsl"'}, | |
processing-instruction css-conversion {'no'}, | |
<html | |
xmlns="http://www.w3.org/1999/xhtml" | |
xmlns:ev="http://www.w3.org/2001/xml-events" | |
xmlns:xsd="http://www.w3.org/2001/XMLSchema" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="hasChild selector with JS"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
.color { | |
color:red; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
button { | |
position:relative; | |
border:0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
.delete { | |
display:flex; | |
-webkit-mask: url(https://cdn.worldvectorlogo.com/logos/react.svg) 50% 50%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml-stylesheet href="xsltforms/xsltforms.xsl" type="text/xsl"?> | |
<?xsltforms-options debug="yes"?> | |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xf="http://www.w3.org/2002/xforms" xmlns:ev="http://www.w3.org/2001/xml-events"> | |
<head> | |
<title>XForms inputs with labels</title> | |
<xf:model> | |
<xf:action ev:event="xforms-ready"> | |
<xf:setvalue ref="instance('empty')/fullName" value="concat(instance('prefilled')/forename, ' ', instance('prefilled')/surname)"/> | |
</xf:action> | |
<xf:instance id="prefilled"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xquery version "3.1"; | |
let $map := map { | |
"method": "xml", | |
"version": "1.0", | |
"indent": true(), | |
"use-character-maps": map { | |
"<":"<", | |
">":">" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml-stylesheet href="xsltforms.xsl" type="text/xsl"?> | |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xf="http://www.w3.org/2002/xforms" xmlns:foo="foo" foo:bogus="ff fix"> | |
<head> | |
<title>Rock with XForms !</title> | |
<xf:model> | |
<xf:instance id="music"> | |
<data xmlns="foo"> | |
<rockBand/> | |
<album n="1"/> | |
<album n="2"/> |
OlderNewer