QML tableview update
Unsolved
QML and Qt Quick
-
Hello. I'm working on a CAN Bus Sniffer QML application. My application must display CAN messages in tabular form.
I'm using a ListView to display data that is stored in a QStringList in C++. The first column contains identifiers and the other the data.
What i want to do is display data with same identifier in a single line. For example for the identifier 4FF , data sent a this identifier must be displayed in a single line. I mean it must be refreshed.
Anyone get an idea? -
@Babs
Since you are using a QStringList model this is very cumbersome.I suggest you implement this cleanly in a C++ model and use it in QML:
https://doc.qt.io/qt-5/qtquick-modelviewsdata-cppmodels.html -