You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: versioned_docs/version-3.10.0/60-Migration/33-3.9.0 TO 3.10.0.md
+8
Original file line number
Diff line number
Diff line change
@@ -105,6 +105,14 @@ Migration should already fix a large number of typing errors but you might have
105
105
Example :
106
106
`<my-component showLoader="true">` has to be replaced by `<my-component [showLoader]="true">`
107
107
You can always deactivate strictTemplates in the tsconfig.json (though unadvisable).
108
+
3. The HTML templates of **BiaTableComponent** and **BiaCalcTableComponent** uses the property `selectedElements` to set the `selection` input property of `p-table` component. Ensure that any of your own table component that extends the **BiaTableComponent** or **BiaCalcTableComponent** with a custom HTML template set the same input property of `p-table` component with the `selectedElements` property :
109
+
```html
110
+
<p-table
111
+
...
112
+
[(selection)]="selectedElements"
113
+
...>
114
+
</p-table>
115
+
```
108
116
### BACK
109
117
1. Tout ce qui concerne UserProfile été supprimé du framework dans cette version. Cette partie ne devrait pas être utilisée et peut être supprimée de vos applications si vous y faites référence.
110
118
2. The NotificationDomainService has been moved to NotificationAppService in application layer. If you had specific code in your NotificationDomainService, move it manually to the NotificationAppService.
0 commit comments