Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions _data/components/otableData/00table.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,12 @@ attributes: [{
description: "Visible buttons in export dialog, separated by ';'. Default/no configured: show all. Empty value: hide all",
required: "",
default: "no"
},{
name: "selection-on-row-click",
type: "yes|no|true|false",
description: "Indicates whether row selection is triggered when clicking on a row",
required: "",
default: "yes"
}]

inheritedOutputs: [{
Expand Down
6 changes: 2 additions & 4 deletions _data/components/otableData/types/OTableGlobalConfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ attributes: [{
},{
name: "selectionOnRowClick",
type: "boolean",
default : "false",
default : "",
required : "",
description : "Indicates whether row selection is triggered when clicking on a row."
},
Expand All @@ -80,7 +80,5 @@ attributes: [{
default : "{threshold:300 , minVisibleRows: 300}",
required : "",
description : "Configuration object for loading strategy."
}

]
}]

15 changes: 9 additions & 6 deletions docs/aditional-information/52-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,17 @@ In this section you can check the different releases of **OntimizeWeb** and its
</tr>
</thead>
<tbody>
<tr>
<td>15.8.1</td>
<td rowspan="3">15.1.1</td>
<td rowspan="47">15.0.1<br>15.0.0</td>
<td rowspan="2">15.3.0</td>
<td rowspan="47">15.1.2<br>15.1.1<br>15.1.0<br>15.0.0</td>
<td rowspan="7">15.1.0</td>
<td rowspan="47">15.1.2<br>15.1.1<br>15.1.0<br>15.0.0</td>
</tr>
<tr>
<td>15.8.0</td>
<td rowspan="2">15.1.1</td>
<td rowspan="46">15.0.1<br>15.0.0</td>
<td>15.3.0</td>
<td rowspan="46">15.1.2<br>15.1.1<br>15.1.0<br>15.0.0</td>
<td rowspan="6">15.1.0</td>
<td rowspan="46">15.1.2<br>15.1.1<br>15.1.0<br>15.0.0</td>
</tr>
<tr>
<td>15.7.1</td>
Expand Down
8 changes: 4 additions & 4 deletions docs/components/data/35-o-table.component.md
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,7 @@ Often when displaying numbers in a table, users want to show summary results of
quick-filter="yes" filter-case-sensitive="true" >
<o-table-column attr="BALANCE" title="BALANCE" type="currency" currency-symbol="€" thousand-separator=","></o-table-column>
<o-table-column attr="INTERESRATE" title="INTERESRATE" type="real" ></o-table-column>
<o-table-column-aggregate attr="BALANCE" title="sum">
<o-table-column-aggregate attr="BALANCE" title="sum"></o-table-column-aggregate>
<o-table-column-aggregate attr="INTERESRATE" [aggregate-function]="custom"></o-table-column-aggregate>
</o-table>
```
Expand Down Expand Up @@ -1586,11 +1586,11 @@ If the selector `o-table-toolbar` is used together with `position='start'` the c
<!-- Custom definition button -->
<o-table-button attr="action1" (onClick)="onAction1()" label="Action1" icon="alarm"></o-table-button>
<!-- Custom content toolbar in position start -->
<o-combo o-grid-toolbar position="start" label="Sort" width="100px"...></o-combo>
<o-combo o-table-toolbar position="start" label="Sort" width="100px"...></o-combo>
<!-- Custom content toolbar in position end -->
<o-slide-toggle o-grid-toolbar position="end"....></o-slide-toggle>
<o-slide-toggle o-table-toolbar position="end"....></o-slide-toggle>
...
</o-grid>
</o-table>
```

![Add custom content in toolbar in position start]({{ "/assets/images/components/tabla/add-content-toolbar.png" | absolute_url }}){: .comp-example-img}
Expand Down