source: trunk/calendar_new/xsl/detailsDialog.xsl @ 457

Revision 457, 1.5 KB checked in by niltonneto, 16 years ago (diff)

Alterações feitas por Alexandre Muller.
Melhorias e correção na versão AJAX da Agenda.
Email: amuller@…

  • Property svn:executable set to *
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3<xsl:template match="/retorno">
4<table style="position: absolute; width: 350px; height: 350px;" border="0" cellpadding="0" cellspacing="0">
5<tbody>
6<tr style="height: 24px;">
7        <td background="templates/default/images/iw_nw.png">
8        </td>
9        <td background="templates/default/images/iw_lu.png">
10        </td>
11        <td background="templates/default/images/iw_ne.png">
12                <img id="closeDialog" onclick="calendar.dialog()" src="templates/default/images/close.gif" style="position: absolute; z-index: 184; cursor: pointer;"/>
13        </td>
14</tr>
15<tr>
16        <td style="width: 24px;" background="templates/default/images/iw_ll.png">
17        </td>
18        <td>
19                <div style="background: #FFF; height: 100%">
20                        <xsl:variable name="title" select="title" />
21                        <xsl:variable name="description" select="description" />
22                        <xsl:variable name="location" select="location" />
23                        Titulo:<br/>
24                        <input type="text" value="{title}" size="30"></input><br/>
25                        Descricao:<br/>
26                        <input type="text" value="{description}" size="50"></input><br/>
27                        Local:<br/>
28                        <input type="text" value="{location}" size="30"></input><br/>
29
30                </div>
31        </td>
32        <td style="width: 24px;" background="templates/default/images/iw_lr.png"></td>
33</tr>
34<tr style="height: 24px;">
35        <td background="templates/default/images/iw_sw.png">
36        </td>
37        <td background="templates/default/images/iw_ld.png">
38        </td>
39        <td background="templates/default/images/iw_se.png">
40        </td>
41</tr>
42</tbody>
43</table>
44</xsl:template>
45</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.