Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi, How can I check object type (instanceof or w/e) of QStringList in QML? Array.isArray(obj) doesn't work.
@Montjet Hi,
This is working for me
if(obj instanceof Array) //Array OK else //Not array
How is your QStringList instance accessed from QML ? Is it exposed as a property ?