DetailTable.html 727 Bytes
<div id="NMEC_${id}" class="wev-comp-${compType}" data-form="${form}">
	<div class="wev-detailtable-btn-container wev-clearfix">
		{@each btns as btn}
			<button type="button" class="wev-btn ${btn.className}">$${btn.text}</button>
		{@/each}
	</div>
	<div class="wev-detailtable-container">
		<div class="wev-detailtable-view-wrapper">
			<table>
				<thead>
					<tr>
						{@each columns as column}
						{@if column.show}
						<th style="${column.width}">$${column.text}</th>
						{@/if}
						{@/each} 
					</tr>
				</thead>
			</table>
			$${loading.content}
			<div class="wev-detailtable-content-wrapper" style="${height}">
				<table>
					<tbody>
						
					</tbody>
				</table>
			</div>
		</div>
	</div>
</div>