source: schedule/search/index.php@ 17370

Last change on this file since 17370 was 16926, checked in by tanio, 11 years ago
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 $(function() {
8 $.configureBoxes();
9 });
10 </script>
11 <link href="./jQuery Dual Listbox Plug-In_files/styles.css" type="text/css" rel="Stylesheet"><title>
12 jQuery Dual Listbox Plug-In
13</title></head>
14<body>
15 <form name="form1" method="post" action="./jQuery Dual Listbox Plug-In_files/jQuery Dual Listbox Plug-In.htm" id="form1">
16<div>
17<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTk5MjI0ODUwOWRkvKCtI2nhtV2aTJW1Lf+kyL6n9/o=">
18</div>
19
20 <div>
21 <table>
22 <tbody><tr>
23 <td>
24 Filter: <input type="text" id="box1Filter"><button type="button" id="box1Clear">X</button><br>
25 <select id="box1View" multiple="multiple" style="height:500px;width:300px;">
26 <?php
27 $con=mysql_connect("localhost","root","");
28 mysql_select_db("factscheduling",$con);
29 $query=mysql_query("SELECT*FROM tblsource");
30 while($rs=mysql_fetch_array($query)){
31 ?>
32 <option value="<?php echo $rs['SourceID']; ?>"><?php echo $rs['SourceName']; ?></option>
33 <?php
34 }
35 ?>
36 </select>
37
38
39
40 <br>
41 <span id="box1Counter" class="countLabel">Showing 0 of 0</span>
42 <select id="box1Storage" style="display: none;">
43 </select>
44 </td>
45 <td>
46 <button id="to2" type="button">&nbsp;&gt;&nbsp;</button>
47 <button id="allTo2" type="button">&nbsp;&gt;&gt;&nbsp;</button>
48 <button id="allTo1" type="button">&nbsp;&lt;&lt;&nbsp;</button>
49 <button id="to1" type="button">&nbsp;&lt;&nbsp;</button>
50 </td>
51 <td>
52 Filter: <input type="text" id="box2Filter"><button type="button" id="box2Clear">X</button><br>
53
54<select id="box2View" multiple="multiple" style="height:500px;width:300px;"></select>
55
56
57
58
59 <span id="box2Counter" class="countLabel">Showing 16 of 16</span>
60 <select id="box2Storage" style="display: none;">
61 </select>
62 </td>
63 </tr>
64 </tbody></table>
65 </div>
66 </form>
67
68
69</body></html>
Note: See TracBrowser for help on using the repository browser.