Skip to content

Commit 3af4b3b

Browse files
authored
Added more support for vertical tables. (#7)
* Added feature verticalTable, test tables and correct autofill for Data rows selector * Added getting header and data raw css for simple tables. * Fixed header and data row css selector. * Fixed header and data row css selector. * Fixed header and data row css selector. * Some changes of getting data in vertical tables dataCells * Added DataPreview for vertical Tables * Added column selection for vertical tables * Added Data preview and scrape for vertical and horizontal tables without changing Result key * Added Data preview and scrape for vertical and horizontal tables without changing Result key * Refactored verticalTable. Now checking doing only in Controller. * Fixed verticalTable checkbox in SelectorEdit.html * Fixed a lot of bugs with verticalTable. * Fixed a lot of bugs of selectorTable, but still have problems with complicated case(table in table) * Code style changes and moved extraction of selector verticalTable value to getCurrentlyEditedSelector method.
1 parent f7e46c6 commit 3af4b3b

File tree

4 files changed

+1576
-1473
lines changed

4 files changed

+1576
-1473
lines changed

extension/devtools/views/SelectorEdit.html

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,19 @@
8585
<div class="col-sm-8">
8686
<div class="checkbox">
8787
<label>
88-
<input type="checkbox" name="tableAddMissingColumns" {{#selector.tableAddMissingColumns}} checked="checked" {{/selector.tableAddMissingColumns}}>
88+
<input type="checkbox" id="tableAddMissingColumns" name="tableAddMissingColumns" {{#selector.tableAddMissingColumns}} checked="checked" {{/selector.tableAddMissingColumns}}>
89+
</label>
90+
</div>
91+
</div>
92+
</div>
93+
94+
<!-- verticalTable -->
95+
<div class="form-group feature feature-verticalTable">
96+
<label for="verticalTable" class="col-sm-2 control-label">This is vertical table</label>
97+
<div class="col-sm-8">
98+
<div class="checkbox">
99+
<label>
100+
<input type="checkbox" id="verticalTable" name="verticalTable" {{#selector.verticalTable}} checked="checked" {{/selector.verticalTable}}>
89101
</label>
90102
</div>
91103
</div>

0 commit comments

Comments
 (0)