source: trunk/calendar_new/xsl/addDialog.xsl @ 420

Revision 420, 2.0 KB checked in by niltonneto, 16 years ago (diff)

Commit inicial da agenda com layout usando Ajax.

  • 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="/text">
4<div style="position:absolute;left: 0px; top: 0px;" id="infowindow">
5<table style="position: absolute; width: 350px; height: 150px;" border="0" cellpadding="0" cellspacing="0">
6<tbody>
7<tr style="height: 24px;">
8        <td background="templates/default/images/iw_nw.png">
9        </td>
10        <td background="templates/default/images/iw_lu.png">
11        </td>
12        <td background="templates/default/images/iw_ne.png">
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="overflow: hidden; height: 110; background-color: #ffffff; z-index: 183; cursor: default">
20        <br/>
21        <font size="-1"><xsl:value-of select="date" /></font>
22        <br/>
23        <table class="" style="width: auto;"><tbody>
24        <tr><td><font size="-1"><label>Horário:</label></font></td>
25                <td style="text-align:center"><font color="black" id="intervalId" size="-1"><xsl:value-of select="time" /></font></td>
26        </tr>
27        <tr>
28                <td><font size="-1"><label forid="b_subject">Título:</label></font></td>
29                <td class="" id="bubble_input">
30                <input style="height:18px" id="dragEventSubject" size="35" name="b_subject"/>
31                </td>
32        </tr>
33        </tbody></table>
34        <br/>
35        <div id="addEventLink" class="buttontype" onclick="quickAddEvent(document.getElementById('dragEventSubject').value,_dragArea.initEvent,_dragArea.endEvent);">Add event</div>
36        <img onclick="calendar.dialog()" width="14" height="13" src="templates/default/images/close.gif" style="position: absolute; z-index: 184; cursor: pointer; left: 320px; top: 25px;"/>
37        </div>
38        </td>
39        <td style="width: 24px;" background="templates/default/images/iw_lr.png"></td>
40</tr>
41<tr style="height: 24px;">
42        <td background="templates/default/images/iw_sw.png">
43        </td>
44        <td background="templates/default/images/iw_ld.png">
45        </td>
46        <td background="templates/default/images/iw_se.png">
47        </td>
48</tr>
49</tbody>
50</table>
51</div>
52</xsl:template>
53</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.