source: schedule/search/index.php@ 18142

Last change on this file since 18142 was 17502, checked in by tose, 11 years ago
Implements strict mode on scripts
File size: 2.9 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<!-- saved from url=(0045)http://www.meadmiracle.com/dlb/DLBPlugin.aspx -->
3<html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <script src="./jQuery Dual Listbox Plug-In_files/jquery-1.3.2.min.js" type="text/javascript" language="javascript"></script>
5 <script src="./jQuery Dual Listbox Plug-In_files/jQuery.dualListBox-1.2.min.js" language="javascript" type="text/javascript"></script>
6 <script language="javascript" type="text/javascript">
7 'user script';
8 $(function() {
9 $.configureBoxes();
10 });
11 </script>
12 <link href="./jQuery Dual Listbox Plug-In_files/styles.css" type="text/css" rel="Stylesheet"><title>
13 jQuery Dual Listbox Plug-In
14</title></head>
15<body>
16 <form name="form1" method="post" action="./jQuery Dual Listbox Plug-In_files/jQuery Dual Listbox Plug-In.htm" id="form1">
17<div>
18<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTk5MjI0ODUwOWRkvKCtI2nhtV2aTJW1Lf+kyL6n9/o=">
19</div>
20
21 <div>
22 <table>
23 <tbody><tr>
24 <td>
25 Filter: <input type="text" id="box1Filter"><button type="button" id="box1Clear">X</button><br>
26 <select id="box1View" multiple="multiple" style="height:500px;width:300px;">
27 <?php
28 $con=mysql_connect("localhost","root","");
29 mysql_select_db("factscheduling",$con);
30 $query=mysql_query("SELECT*FROM tblsource");
31 while($rs=mysql_fetch_array($query)){
32 ?>
33 <option value="<?php echo $rs['SourceID']; ?>"><?php echo $rs['SourceName']; ?></option>
34 <?php
35 }
36 ?>
37 </select>
38
39
40
41 <br>
42 <span id="box1Counter" class="countLabel">Showing 0 of 0</span>
43 <select id="box1Storage" style="display: none;">
44 </select>
45 </td>
46 <td>
47 <button id="to2" type="button">&nbsp;&gt;&nbsp;</button>
48 <button id="allTo2" type="button">&nbsp;&gt;&gt;&nbsp;</button>
49 <button id="allTo1" type="button">&nbsp;&lt;&lt;&nbsp;</button>
50 <button id="to1" type="button">&nbsp;&lt;&nbsp;</button>
51 </td>
52 <td>
53 Filter: <input type="text" id="box2Filter"><button type="button" id="box2Clear">X</button><br>
54
55<select id="box2View" multiple="multiple" style="height:500px;width:300px;"></select>
56
57
58
59
60 <span id="box2Counter" class="countLabel">Showing 16 of 16</span>
61 <select id="box2Storage" style="display: none;">
62 </select>
63 </td>
64 </tr>
65 </tbody></table>
66 </div>
67 </form>
68
69
70</body></html>
Note: See TracBrowser for help on using the repository browser.