Promote flowsheet view filtered rows into sticky header
This commit is contained in:
parent
ed90f64076
commit
b6ba225e3d
@ -258,9 +258,7 @@
|
||||
</th>
|
||||
{#each component_groups as group, idx}<th class="date" class:first={ (idx == 0) || (group.key != component_groups[idx - 1].key) }><div class="year">{group.datestr.substring(0, 4)}</div><div class="monthdate">{group.datestr.substring(5)}</div>{#if false}<div class="hourminute daily">{datetime_timestr(group.values[0]._ts)}</div>{/if}</th>{/each}
|
||||
</tr>
|
||||
</thead>
|
||||
{#if pattern}
|
||||
<tbody>
|
||||
{#each component_names as name}
|
||||
{#if filter_test(pattern, name)}
|
||||
<tr class="match">
|
||||
@ -271,8 +269,10 @@
|
||||
</tr>
|
||||
{/if}
|
||||
{/each}
|
||||
</tbody>
|
||||
{/if}
|
||||
</thead>
|
||||
<tbody>
|
||||
{#if pattern}
|
||||
{#each component_names as name}
|
||||
{#if !filter_test(pattern, name)}
|
||||
<tr>
|
||||
@ -283,9 +283,7 @@
|
||||
</tr>
|
||||
{/if}
|
||||
{/each}
|
||||
</tbody>
|
||||
{:else}
|
||||
<tbody>
|
||||
{#each component_names as name}
|
||||
<tr>
|
||||
<th>{name}</th>
|
||||
@ -294,8 +292,8 @@
|
||||
{/each}
|
||||
</tr>
|
||||
{/each}
|
||||
</tbody>
|
||||
{/if}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user