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

Revision 492, 1.9 KB checked in by niltonneto, 16 years ago (diff)

Alterações no módulo calendar_new (em desenvolvimento).

  • Property svn:executable set to *
RevLine 
[457]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">
[492]12                <img id="closeDialog" onclick="calendar.dialog()" src="templates/default/images/close.gif" style="position: absolute; top: 20px; left: 325px; z-index: 184; cursor: pointer;"/>
[457]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/>
[492]24                        <input type="text" id="dragEventSubject" value="{title}" size="30"></input><br/>
[457]25                        Descricao:<br/>
[492]26                        <input type="text" id="dragEventDescription" value="{description}" size="50"></input><br/>
[457]27                        Local:<br/>
[492]28                        <input type="text" id="dragEventLocation" value="{location}" size="30"></input><br/>
29                        <div id="saveLink" class="buttontype" style="width:60px;" onclick="saveEvent(null,document.getElementById('dragEventSubject').value,document.getElementById('dragEventDescription').value,document.getElementById('dragEventLocation').value,_dragArea.initEvent,_dragArea.endEvent);">Save event</div>
[457]30
31                </div>
32        </td>
33        <td style="width: 24px;" background="templates/default/images/iw_lr.png"></td>
34</tr>
35<tr style="height: 24px;">
36        <td background="templates/default/images/iw_sw.png">
37        </td>
38        <td background="templates/default/images/iw_ld.png">
39        </td>
40        <td background="templates/default/images/iw_se.png">
41        </td>
42</tr>
43</tbody>
44</table>
45</xsl:template>
46</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.