blob: 80d64d4188ccf194e2d8f04d120f5f3debe87b2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtQuick.Controls
//! [currentIndex]
SearchField {
id: searchField
suggestionModel: ListModel {
ListElement { value: "123,456" }
}
textRole: "value"
Component.onCompleted: {
if (suggestionModel.count > 0) {
text = suggestionModel.get(0).value
currentIndex = 0
}
}
}
//! [currentIndex]
|