/dev/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/dev/trunk

« back to all changes in this revision

Viewing changes to setups/katrin/modules/filter.php

  • Committer: Suren A. Chilingaryan
  • Date: 2014-01-25 16:38:03 UTC
  • Revision ID: csa@dside.dyndns.org-20140125163803-mhmpyk4dpzz7qabw
Detach setups

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
// Author: Sebastian Voecking <sebastian.voecking@uni-muenster.de>
3
 
 
4
 
$filter_title = _("Run Filter");
5
 
 
6
 
function filterJS()
7
 
{
8
 
?>
9
 
    filter = new FILTER("katrin_filter_div");
10
 
<?php
11
 
}
12
 
 
13
 
function filterPage()
14
 
{
15
 
?>
16
 
<table width="100%">
17
 
    <tr>
18
 
        <td class="filter" style="text-align: left">Filter by parameters:</td>
19
 
        <td style="text-align: right">
20
 
            <a href="javascript:katrin.SetCustomProperties('kdb_parameters=help&amp;kdb_run=')">
21
 
                Help
22
 
            </a>
23
 
        </td>
24
 
    </tr>
25
 
</table>
26
 
<form name="form" onsubmit="return false">
27
 
    <table width="100%">
28
 
        <tr>
29
 
            <td style="padding-right: 10px; width:100%">
30
 
                <input id="parameters" type="text" style="width: 100%" />
31
 
            </td>
32
 
            <td>
33
 
                <input type="button" value="Clear"
34
 
                    onclick="filter.ClearParameters()"/>
35
 
            </td>
36
 
        </tr>
37
 
        <tr>
38
 
            <td colspan="2" style="text-align: center">
39
 
                <input type="submit" value="Apply" style="width: 90%"
40
 
                    onclick="filter.ApplyParameters()"/>
41
 
            </td>
42
 
        <tr>
43
 
</table>
44
 
</form>
45
 
 
46
 
<table width="100%">
47
 
    <tr>
48
 
        <td class="filter" style="text-align: left">Filter by date:</td>
49
 
        <td style="text-align: right">
50
 
            <a href="javascript:filter.Update()">
51
 
                Update list
52
 
            </a>
53
 
        </td>
54
 
    </tr>
55
 
</table>
56
 
<div id="katrin_filter_div"></div>
57
 
<?php
58
 
}
59
 
?>