SearchLayoutView_tmpl.html 3.43 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 21
            <div class="col-md-9" style="margin-top: 5px;">
                <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-md-3">
30
                <button type="button" class="btn btn-atlasAction btn-atlas pull-right typeLOV" title="Refresh" data-id="refreshBtn"><i class="fa fa-refresh"></i></button>
31
            </div>
32
        </div>
33 34 35
    </div>
    <div class="col-sm-12">
        <div class="form-group">
36
            <div class="srchType clearfix">
37
                <span class="srchTitle">Search By Type</span>
38 39 40 41 42 43 44
                <div class="">
                    <div class="col-sm-10 no-padding temFilter">
                        <select data-id="typeLOV"></select>
                    </div>
                    <div class="col-sm-2 no-padding temFilterBtn">
                        <button type="button" class="btn btn-atlasAction btn-atlas pull-right typeLOV" title="Entity Attribute Filter" data-id="typeAttrFilter"><i class="fa fa-filter"></i></button>
                    </div>
45
                </div>
46
            </div>
47
            <div class="srchType tagBox clearfix">
48
                <span class="srchTitle">Search By Tag</span>
49 50 51 52 53 54 55
                <div>
                    <div class="col-sm-10 no-padding">
                        <select data-id="tagLOV"></select>
                    </div>
                    <div class="col-sm-2 no-padding">
                        <button type="button" class="btn btn-atlasAction btn-atlas pull-right" title="Tag Attribute Filter" data-id="tagAttrFilter"><i class="fa fa-filter"></i></button>
                    </div>
56 57 58 59 60
                </div>
            </div>
            <div class="srchType">
                <span class="srchTitle">Search By Query</span>
                <input type="text" class="form-control" data-id="searchInput" placeholder="Search using a query string: e.g. sales_fact" style="margin: 5px 0px;">
61
            </div>
62
        </div>
63
        <div class="clearAdvanceSearch" data-id="clearSearch">Clear</div>
64
        <button type="button" class="btn btn-atlas advanceSearchBtn" data-id="searchBtn" disabled="disabled">Search</button>
65
    </div>
66
    <div id="searchResult"></div>
67
</div>