SearchLayoutView_tmpl.html 4.01 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<!--
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
-->
<div class="row row-margin-bottom">
18 19
    <div class="col-sm-12" style="margin:15px 0px;">
        <div class="row">
20
            <div class="col-sm-9" style="margin-top: 5px;">
21
                <span class="pull-left">Basic</span>
22
                <label class="switch pull-left">
23 24 25
                    <input type="checkbox" class="switch-input" name="queryType" value="text" />
                    <span class="switch-slider"></span>
                </label>
26 27
                <span class="pull-left">Advanced</span>
                <span class="advancedInfo" data-id="advancedInfo"><i class="fa fa-question-circle-o"></i></span>
28
            </div>
29
            <div class="col-sm-3">
30
                <button type="button" class="btn btn-action btn-md pull-right typeLOV" title="Refresh" data-id="refreshBtn"><i class="fa fa-refresh"></i></button>
31
            </div>
32
        </div>
33
    </div>
34
    <div class="col-sm-12 form-group">
35
        <div class="form-group">
36
            <div class="srchType clearfix">
37
                <span class="srchTitle">Search By Type</span>
38
                <div class="">
39
                    <div class="col-sm-10 no-padding typeFilter">
40 41
                        <select data-id="typeLOV"></select>
                    </div>
42
                    <div class="col-sm-2 no-padding typeFilterBtn">
43
                        <button type="button" class="btn btn-action btn-md pull-right typeLOV active" title="Entity Attribute Filter" data-id="typeAttrFilter"><i class="fa fa-filter"></i></button>
44
                    </div>
45
                </div>
46
            </div>
47
            <div class="srchType tagBox clearfix">
48
                <span class="srchTitle">Search By Classification</span>
49 50 51 52 53
                <div>
                    <div class="col-sm-10 no-padding">
                        <select data-id="tagLOV"></select>
                    </div>
                    <div class="col-sm-2 no-padding">
54
                        <button type="button" class="btn btn-action btn-md pull-right active" title="Tag Attribute Filter" data-id="tagAttrFilter"><i class="fa fa-filter"></i></button>
55
                    </div>
56 57
                </div>
            </div>
58 59 60 61 62 63 64 65
            <div class="srchType termBox clearfix">
                <span class="srchTitle">Search By Term</span>
                <div class="">
                    <div class="col-sm-12 no-padding">
                        <select data-id="termLOV"></select>
                    </div>
                </div>
            </div>
66
            <div class="srchType">
67 68
                <span class="srchTitle searchText">Search By Text</span>
                <input type="text" class="form-control" data-id="searchInput" placeholder="Search by text" style="margin: 5px 0px;">
69
            </div>
70
        </div>
71 72
        <button class="btn btn-action" data-id="clearSearch">Clear</button>
        <button type="button" class="btn btn-atlas pull-right" data-id="searchBtn" disabled="disabled">Search</button>
73
    </div>
74
    <div id="searchResult"></div>
75 76
    <div class="col-sm-12">
        <div class="col-sm-12 well basicSaveSearch" data-id="r_saveSearchBasic"></div>
77
    </div>
78 79
    <div class="col-sm-12">
        <div class="col-sm-12 well advanceSaveSearch" data-id="r_saveSearchAdvance" style="display: none"></div>
80
    </div>
81
</div>