QML
Добрый день!
Вопрос, собственно таков.
Есть ListView - данные в него подгружаются из файла
.js. ListView содержит checkBox, кол-во которых зависит от кол-ва записей в файле
.js.
Все нормально подшружается и отображается. НО, если отметить чекбоксы и пролистать вниз, а затем вновь вернуться к верхним чекбоксам, то их состояния сбрасываются. Не сбрасывается только самый первый. Как пофиксить грамотно?
Файл 1
import QtQuick 2.0 import QtQuick.Controls 2.12 import "qrc:/Resources/models/tests.js" as Tests Rectangle { color: "white" visible: false ListView { id: _tests anchors.fill: parent model: Tests.g11 delegate: _delegate } Component{ id: _delegate Item { id: _textItem width: _tests.width height: 300 Column{ Text { text: modelData.question wrapMode: Text.WordWrap width: _textItem.width } Variants{ height: 100 width: 200 } } } } }
Файл 2
import QtQuick 2.0 import QtQuick.Controls 2.12 import "qrc:/Resources/models/tests.js" as Tests ListView { id: _testsVariants model: Tests.g11 // Text { // id: _supText // visible: false // } ButtonGroup { id: _group buttons: _repeater.children } Column{ id: _column Repeater { id: _repeater model: modelData.arr CheckBox{ // id: _check text: modelData ButtonGroup.group: _group onClicked: { //_supText.text = index console.log("Clicked at " + index); } } } } }
Это собственно файл с данными
var g11 = [ { question: "Карточка 1.1. \n Из названных характеристик исключите ту, которая не относится к гласным звукам.", arr: ["1.Степень подъема спинки языка.","2.Лабиализация.","3.Место подъема спинки языка.", "4.Наличие смычки или щели."], }, { question: "Карточка 1.2. \n Из названных характеристик исключите ту, которая не относится к согласным звукам.", arr: ["1.Ротовое или носовое резонирование.","2.Палатализация.", "3.Лабиализация", "4.Отсутствие или наличие вибрации голосовых связок."], }, { question: "Карточка 1.3. \n Укажите признак, по которому согласные фонемы делятся на звонкие и глухие.", arr: ["1.Место артикуляции.","2.Способ артикуляции.", "3.Носовое или ротовое резонирование", "4.Наличие или отсутствие вибрации голосовых связок.", "5.Наличие или отсутствие дополнительного подъема средней части спинки языка."], }, {
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.Do you like it? Share on social networks!
AD
- Akiv Doros
- Nov. 12, 2024, 1:58 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:50points,
- Rating points-4
m
- molni99
- Oct. 26, 2024, 11:37 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:80points,
- Rating points4
m
- molni99
- Oct. 26, 2024, 11:29 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:20points,
- Rating points-10
Last comments
Circuit switching and packet data transmission networks Angioedema 1 priligy dapoxetine
How to Copy Files in Linux If only females relatives with DZ offspring were considered these percentages were 23 order priligy online uk
Qt/C++ - Tutorial 068. Hello World using the CMAKE build system in CLion ditropan pristiq dosing With the Yankees leading, 4 3, Rivera jogged in from the bullpen to a standing ovation as he prepared for his final appearance in Chicago buy priligy pakistan
EVILEG-CORE. Using Google reCAPTCHA 2001; 98 29 34 priligy buy
PyQt5 - Lesson 007. Works with QML QtQuick (Signals and slots) priligy 30mg Am J Obstet Gynecol 171 1488 505
Now discuss on the forum
добавить qlineseries в функции priligy amazon canada 93 GREB1 protein GREB1 AB011147 6
Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
IscanderCheNov. 1, 2024, 1:43 a.m.
Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…
ИМ
Реализация навигации по разделам Спасибо Евгений!
Игорь МаксимовOct. 3, 2024, 2:05 p.m.
Добрый день,
У вас модель read only и данные чекбокса никуда не сохраняются.
Я бы считал данные из файла и добавил бых в нормальную модель ListModel, с даными для чекбокса. Чтобы эта модель в итоге выглядела как-то так
arrCheckBoxes будут отвечать как раз за эти чекбоксы