mediawiki-extensions-WikiEd.../modules/templates/dialogInsertTable.html
Pols12 eeaa229523 dialogInsertTable: empty preview-hidden row to hide header row when needed
In “Insert table” dialog, when checking/unchecking “Add header row”,
Example preview first row switches between preview-hidden and
preview-header. Previously, preview-hidden contained 3 TD cells
(while preview-header contains 3 TH cells).

This commit removes the 3 TD to hide the TH instead of replacing with
TD, since, in the generated wikitext, the header row is not included in
row count.

Bug: T303690
Change-Id: I38c1bb081a30e25875de8beaadccc075189ad397
2022-03-14 07:31:41 +00:00

59 lines
2.8 KiB
HTML

<div class="wikieditor-toolbar-dialog-wrapper">
<fieldset><div class="wikieditor-toolbar-table-form">
<div class="wikieditor-toolbar-field-wrapper">
<input type="checkbox" id="wikieditor-toolbar-table-dimensions-header" checked/>
<label for="wikieditor-toolbar-table-dimensions-header"
rel="wikieditor-toolbar-tool-table-dimensions-header"></label>
</div>
<div class="wikieditor-toolbar-field-wrapper">
<input type="checkbox" id="wikieditor-toolbar-table-wikitable" checked/>
<label for="wikieditor-toolbar-table-wikitable" rel="wikieditor-toolbar-tool-table-wikitable"></label>
</div>
<div class="wikieditor-toolbar-field-wrapper">
<input type="checkbox" id="wikieditor-toolbar-table-sortable"/>
<label for="wikieditor-toolbar-table-sortable" rel="wikieditor-toolbar-tool-table-sortable"></label>
</div>
<div class="wikieditor-toolbar-table-dimension-fields">
<div class="wikieditor-toolbar-field-wrapper">
<label for="wikieditor-toolbar-table-dimensions-rows"
rel="wikieditor-toolbar-tool-table-dimensions-rows"></label><br/>
<input type="number" min="1" max="1000" id="wikieditor-toolbar-table-dimensions-rows" size="4"/>
</div>
<div class="wikieditor-toolbar-field-wrapper">
<label for="wikieditor-toolbar-table-dimensions-columns"
rel="wikieditor-toolbar-tool-table-dimensions-columns"></label><br/>
<input type="number" min="1" max="1000" id="wikieditor-toolbar-table-dimensions-columns" size="4"/>
</div>
</div>
</div></fieldset>
<div class="wikieditor-toolbar-table-preview-wrapper">
<span rel="wikieditor-toolbar-tool-table-example"></span>
<div class="wikieditor-toolbar-table-preview-content">
<table id="wikieditor-toolbar-table-preview" class="wikieditor-toolbar-table-preview wikitable">
<caption rel="wikieditor-toolbar-tool-table-example-caption"></caption>
<thead>
<tr class="wikieditor-toolbar-table-preview-header">
<th rel="wikieditor-toolbar-tool-table-example-header"></th>
<th rel="wikieditor-toolbar-tool-table-example-header"></th>
<th rel="wikieditor-toolbar-tool-table-example-header"></th>
</tr>
</thead><tbody>
<tr class="wikieditor-toolbar-table-preview-hidden" style="display: none;">
</tr><tr>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
</tr><tr>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
</tr><tr>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
</tr>
</tbody>
</table>
</div>
</div></div>