SearchResultLayoutView_tmpl.html 6.12 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!--
 * 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.
-->
17
<div class="position-relative">
18 19
    <div class="tableOverlay"></div>
    <!-- Not for table Loader its only for initial loading -->
20
    <div class="fontLoader" style="z-index:999">
21
        <i class="fa fa-refresh fa-spin-custom"></i>
22
    </div>
23
    <div class="ellipsis" style="display: none;"><span class="searchResult" style=" font-size: 16px;"></span>
24
    </div>
25
    <div class="searchTable">
26
        <div class="row well" style="padding-top: 0px;">
27
            <div class="row form-group pagination-box filter-box" style="display: none;">
28
                <div class="col-sm-4">
29 30
                    <span class="labelShowRecord pull-left" data-id="pageRecordText"> </span>
                </div>
31
                <div class="col-sm-8 inline-content-fr no-padding-left">
32 33
                    <div class="inline" data-id="colManager"></div>
                    <div class="inline" data-id="containerCheckBox" style="display: none;">
34
                        <label class="checkbox-inline btn" for="historicalentities">
35
                            <input type="checkbox" data-id="checkDeletedEntity" data-value="includeDE" id="historicalentities" />
36 37
                            <b>Show historical entities</b></label>
                    </div>
38
                    <div class="inline" data-id="containerCheckBox" style="display: none;">
39
                        <label class="checkbox-inline btn" for="subclassifications">
40
                            <input type="checkbox" data-id="checkSubClassification" data-value="excludeSC" id="subclassifications" />
41
                            <b>Exclude sub-classifications</b></label>
42
                    </div>
43
                    {{#ifCond fromView '!==' "classification"}}
44
                    <div class="inline" data-id="containerCheckBox" style="display: none;">
45
                        <label class="checkbox-inline btn" for="subtypes">
46
                            <input type="checkbox" data-id="checkSubType" data-value="excludeST" id="subtypes" />
47
                            <b>Exclude sub-types</b></label>
48
                    </div>
49
                    {{/ifCond}}
50 51 52 53 54 55
                    <div class="inline">
                        <a href="javascript:void(0)" class=" multiSelectTag assignTag btn btn-action btn-sm" style="display:none" data-id="addAssignTag"><i class="fa fa-plus"></i> Assign Tag</a>
                    </div>
                </div>
            </div>
            <div id="r_searchResultTableLayoutView">
56
                <h1><b>{{searchType}}</b></h1> {{#if entityCreate}}
57 58 59 60 61 62 63 64
                <div class="entityLink" style="display:none">
                    <p class="entityLink">Search Atlas for existing entities or
                        <a href="javascript:void(0)" data-id='createEntity'> create new entity </a>
                    </p>
                </div>
                {{/if}}
            </div>
            <div class="row pagination-box" style="display: none">
65
                <div class="col-sm-offset-4 col-sm-8">
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
                    <div class="inline-content-fr">
                        <div class="backgrid-paginator inline">
                            <ul class="" data-id="paginationDiv" style="display:none">
                                <li>
                                    <button type="button" data-id="previousData" title="Previous" disabled=true>
                                        <i class="fa fa-angle-left" aria-hidden="true"></i>
                                    </button>
                                </li>
                                <li class="active">
                                    <a href="javascript:void(0)" data-id="activePage"></a>
                                </li>
                                <li>
                                    <button type="button" data-id="nextData" title="Next">
                                        <i class="fa fa-angle-right" aria-hidden="true"></i>
                                    </button>
                                </li>
                            </ul>
                        </div>
84
                        <div class="inline col-sm-4" data-id="paginationDiv">
85 86 87
                            <div class="input-group" data-id="goToPageDiv">
                                <input type="text" class="form-control number-input" data-id="gotoPage" placeholder="Goto Page" />
                                <span class="input-group-btn">
88
                                    <button class="btn btn-atlas btn-md no-margin" type="button" data-id="gotoPagebtn" title="Goto Page" disabled="disabled">Go!</button>
89 90 91 92
                                </span>
                            </div>
                        </div>
                        <div class="inline">
93
                            <div class="inline-content">
94 95 96 97 98 99 100 101 102
                                <span class="control-label-sm inline ">Page Limit :</span>
                                <div class="inline" style="width: 80px;">
                                    <select data-id="showPage" multiple="multiple" class="form-control">
                                    </select>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
103
            </div>
104
        </div>
105
    </div>
106
</div>
107 108 109
<div class="text-center" data-id="columnEmptyInfo" style="display: none;">
    <h4>Please select one/more column to see the data</h4>
</div>