diff options
Diffstat (limited to 'src/controls/TableView.qml')
-rw-r--r-- | src/controls/TableView.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/controls/TableView.qml b/src/controls/TableView.qml index e43577391..e35f41878 100644 --- a/src/controls/TableView.qml +++ b/src/controls/TableView.qml @@ -93,8 +93,8 @@ import QtQuick.Window 2.1 the model role they attach to. Each property in the model will then be shown in their corresponding column. - You can customize the look by overriding the \l itemDelegate, - \l rowDelegate, or \l headerDelegate properties. + You can customize the look by overriding the \l {BasicTableView::}{itemDelegate}, + \l {BasicTableView::}{rowDelegate}, or \l {BasicTableView::}{headerDelegate} properties. The view itself does not provide sorting. This has to be done on the model itself. However you can provide sorting @@ -107,7 +107,7 @@ import QtQuick.Window 2.1 \endlist You can create a custom appearance for a TableView by - assigning a \l {QtQuick.Controls.Styles::TableViewStyle}{TableViewStyle}. + assigning a \l {TableViewStyle}. */ BasicTableView { @@ -222,7 +222,7 @@ BasicTableView { Depending on how the model is populated, the model may not be ready when TableView Component.onCompleted is called. In that case you may need to - delay the call to positionViewAtRow by using a \l {QtQml::Timer}{Timer}. + delay the call to positionViewAtRow by using a \l [QtQml]{Timer}. \note This method should only be called after the component has completed. */ |