Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ui5-table): adjust sample snippet #6580

Merged
merged 1 commit into from
Feb 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 54 additions & 15 deletions packages/main/test/samples/Table.sample.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,27 +98,66 @@ <h3>Basic Table</h3>
</ui5-table-column>

<ui5-table-row>
<ui5-table-cell>Notebook Basic 15HT-1000</ui5-table-cell>
<ui5-table-cell>Very Best Screens</ui5-table-cell>
<ui5-table-cell style="text-align: right">30 x 18 x 3cm</ui5-table-cell>
<ui5-table-cell style="text-align: right">4.2KG</ui5-table-cell>
<ui5-table-cell style="text-align: right">956EUR</ui5-table-cell>
<ui5-table-cell>
<div class="double-line-content">
<span><b>Notebook Basic 15</b></span>
<span style="margin-top: 0.5rem">HT-1000</span>
</div>
</ui5-table-cell>
<ui5-table-cell>
<span>Very Best Screens</span>
</ui5-table-cell>
<ui5-table-cell style="text-align: right">
<span>30 x 18 x 3cm</span>
</ui5-table-cell>
<ui5-table-cell style="text-align: right">
<span style="color: #2b7c2b"><b>4.2</b>KG</span>
</ui5-table-cell>
<ui5-table-cell style="text-align: right">
<span><b>956</b>EUR</span>
</ui5-table-cell>
</ui5-table-row>

<ui5-table-row>
<ui5-table-cell>Notebook Basic 17HT-1001</ui5-table-cell>
<ui5-table-cell>Very Best Screens</ui5-table-cell>
<ui5-table-cell style="text-align: right">29 x 17 x 3.1cm</ui5-table-cell>
<ui5-table-cell style="text-align: right">4.5KG</ui5-table-cell>
<ui5-table-cell style="text-align: right">1249EUR</ui5-table-cell>
<ui5-table-cell>
<div class="double-line-content">
<span><b>Notebook Basic 175</b></span>
<span style="margin-top: 0.5rem">HT-1001</span>
</div>
</ui5-table-cell>
<ui5-table-cell>
<span>Very Best Screens</span>
</ui5-table-cell>
<ui5-table-cell style="text-align: right">
<span>29 x 17 x 3.1cm</span>
</ui5-table-cell>
<ui5-table-cell style="text-align: right">
<span style="color: #2b7c2b"><b>4.5</b>KG</span>
</ui5-table-cell>
<ui5-table-cell style="text-align: right">
<span><b>1249</b>EUR</span>
</ui5-table-cell>
</ui5-table-row>

<ui5-table-row>
<ui5-table-cell>Notebook Basic 18HT-1002</ui5-table-cell>
<ui5-table-cell>Very Best Screens</ui5-table-cell>
<ui5-table-cell style="text-align: right">28 x 19 x 2.5cm</ui5-table-cell>
<ui5-table-cell style="text-align: right">4.2KG</ui5-table-cell>
<ui5-table-cell style="text-align: right">1570EUR</ui5-table-cell>
<ui5-table-cell>
<div class="double-line-content">
<span><b>Notebook Basic 18</b></span>
<span style="margin-top: 0.5rem">HT-1002</span>
</div>
</ui5-table-cell>
<ui5-table-cell>
<span>Very Best Screens</span>
</ui5-table-cell>
<ui5-table-cell style="text-align: right">
<span>28 x 19 x 2.5cm</span>
</ui5-table-cell>
<ui5-table-cell style="text-align: right">
<span style="color: #2b7c2b"><b>4.2</b>KG</span>
</ui5-table-cell>
<ui5-table-cell style="text-align: right">
<span><b>1570</b>EUR</span>
</ui5-table-cell>
</ui5-table-row>

...
Expand Down