-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathItemTable.html
More file actions
22 lines (22 loc) · 1.57 KB
/
ItemTable.html
File metadata and controls
22 lines (22 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div>
<div class="items-section all-items-section" data-dojo-attach-point="allItemsSection">
<div class="items-table-div" data-dojo-attach-point="allItemsTableDiv" data-dojo-attach-event="onscroll:_onAllItemsSectionScroll">
<table class="items-table" cellpadding="10" data-dojo-attach-point="allItemsTable" data-dojo-attach-event="onclick:_onItemsTableClicked">
<tbody data-dojo-attach-point="allItemTbody"></tbody>
</table>
</div>
<div data-dojo-type="jimu/dijit/LoadingIndicator" data-dojo-attach-point="allItemsShelter" data-dojo-props='hidden:true'></div>
</div>
<div class="items-section filtered-items-section" data-dojo-attach-point="filteredItemsSection">
<div class="items-table-div" data-dojo-attach-point="filteredItemsTableDiv" data-dojo-attach-event="onscroll:_onFilteredItemsSectionScroll">
<table class="items-table" cellpadding="10" data-dojo-attach-point="filteredItemsTable" data-dojo-attach-event="onclick:_onItemsTableClicked">
<tbody data-dojo-attach-point="filteredItemsTbody"></tbody>
</table>
</div>
<div class="search-none-tip-section" data-dojo-attach-point="searchNoneTipSection" style="display:none;">
<span class="search-none-icon jimu-icon jimu-icon-error"></span>
<span class="search-none-tip jimu-state-error-text">${nls.searchNone}</span>
</div>
<div data-dojo-type="jimu/dijit/LoadingIndicator" data-dojo-attach-point="filteredItemShelter" data-dojo-props='hidden:true'></div>
</div>
</div>