SearchResultLayoutView_tmpl.html 5.93 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 18 19
<div class="">
    <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">
27 28
            <div class="row form-group pagination-box filter-box" style="display: none;">
                <div class="col-sm-3">
29 30
                    <span class="labelShowRecord pull-left" data-id="pageRecordText"> </span>
                </div>
31
                <div class="col-sm-9 inline-content-fr no-padding-left">
32 33 34
                    <div class="inline" data-id="colManager"></div>
                    <div class="inline" data-id="containerCheckBox" style="display: none;">
                        <label class="checkbox-inline btn" for="inputLabel">
35
                            <input type="checkbox" data-id="checkDeletedEntity" data-value="includeDE" />
36 37
                            <b>Show historical entities</b></label>
                    </div>
38 39 40 41 42 43 44 45 46 47
                    <div class="inline" data-id="containerCheckBox" style="display: none;">
                        <label class="checkbox-inline btn" for="inputLabel">
                            <input type="checkbox" data-id="checkSubClassification" data-value="excludeSC"/>
                            <b>Exclude sub-classification</b></label>
                    </div>
                    <div class="inline" data-id="containerCheckBox" style="display: none;">
                        <label class="checkbox-inline btn" for="inputLabel">
                            <input type="checkbox" data-id="checkSubType"  data-value="excludeST"/>
                            <b>Exclude sub-type</b></label>
                    </div>
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
                    <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">
                {{#if entityCreate}}
                <div class="entityLink" style="display:none">
                    <h1><b>{{searchType}}</b></h1>
                    <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">
64
                <div class="col-sm-offset-4 col-sm-8">
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
                    <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>
83
                        <div class="inline col-sm-4" data-id="paginationDiv">
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
                            <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">
                                    <button class="btn btn-secondary" type="button" data-id="gotoPagebtn" title="Goto Page" disabled="disabled">Go!</button>
                                </span>
                            </div>
                        </div>
                        <div class="inline">
                            <div class="form-group inline-content">
                                <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>
102
            </div>
103
        </div>
104
    </div>
105
</div>
106 107 108
<div class="text-center" data-id="columnEmptyInfo" style="display: none;">
    <h4>Please select one/more column to see the data</h4>
</div>