-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCarrelloFondi
90 lines (86 loc) · 2.92 KB
/
CarrelloFondi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp " ">
<!ENTITY acute "´">
<!ENTITY Agrave "À">
<!ENTITY Aacute "Á">
<!ENTITY Acirc "Â">
<!ENTITY Egrave "È">
<!ENTITY Eacute "É">
<!ENTITY Ecirc "Ê">
<!ENTITY Igrave "Ì">
<!ENTITY Iacute "Í">
<!ENTITY Icirc "Î">
<!ENTITY Ntilde "Ñ">
<!ENTITY Ograve "Ò">
<!ENTITY Oacute "Ó">
<!ENTITY Ocirc "Ô">
<!ENTITY Ugrave "Ù">
<!ENTITY Uacute "Ú">
<!ENTITY Ucirc "Û">
<!ENTITY agrave "à">
<!ENTITY aacute "á">
<!ENTITY acirc "â">
<!ENTITY egrave "è">
<!ENTITY eacute "é">
<!ENTITY ecirc "ê">
<!ENTITY igrave "ì">
<!ENTITY iacute "í">
<!ENTITY icirc "î">
<!ENTITY ograve "ò">
<!ENTITY oacute "ó">
<!ENTITY ocirc "ô">
<!ENTITY ugrave "ù">
<!ENTITY uacute "ú">
<!ENTITY ucirc "û">
]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:xalan="http://xml.apache.org/xslt">
<xsl:template name = "CarrelloFondi" >
<xsl:text disable-output-escaping="yes">
<![CDATA[
<table width="100%" cellpadding="1" cellspacing="0" class="tabExt">
<tr>
<td>
<table cellspacing="1" cellpadding="0" width="100%">
<tr><td align="center" class="intestBlu" colspan="3">INSERIMENTO DATI INVESTIMENTO</td></tr>
<tr>
<td>Cerca <input type='text' id='filtro_fondi' class="text" onkeyup='update_fondi()' size="10"/> in
<select id='tipo_filtro' onchange='update_fondi()'>
<option value='0'>codice</option>
<option value='1'>descrizione</option>
<option value='2'>gestore</option>
<option value='3'>categoria</option>
</select>
</td>
<td>Ordina per
<select id='sort_filtro' onchange='update_fondi()'>
<option value='0'>codice</option>
<option value='1'>descrizione</option>
<option value='2'>gestore</option>
<option value='3' selected='selected'>categoria</option>
</select>
</td>
<td>
Tot. Fondi <input type='text' id='fondi_attivi' size='3' name='GARAN001UNITL001OPZIO001_NUMLINEE' class="text" readonly='readonly' value='0'/>
Tot. Perc. <input type='text' id='fondi_percent' size='4' class="text" readonly='readonly' value='0'/>%
</td>
</tr>
<tr><td class='label' align='center' colspan='3'>CATALOGO FONDI</td></tr>
<tr><td class='monospace' colspan='3'><pre style='display: inline;'> Cod. Descrizione Gestore Categoria</pre></td></tr>
<tr>
<td colspan="3"><div id='magazzino'></div></td>
</tr>
<tr>
<td colspan="3" align="center">
<input class="formButton" type='button' id='take_condi' onclick='nel_carrello()' value='AGGIUNGI' disabled='disabled'/>
</td>
</tr>
<tr>
<td colspan="3"><div id='carrello'></div></td>
</tr>
</table>
</td></tr></table>
<br/>
]]></xsl:text>
</xsl:template>
</xsl:stylesheet>