View Single Post
Halftux's Avatar
Posts: 862 | Thanked: 2,511 times | Joined on Feb 2012 @ Germany
#5
Originally Posted by anig View Post
The last argument is an array of dicts, a{sv}, how can I send that using the typedcall method in qml?

Thanks.

Maybe something similar to this?

Code:
var valueVariant = true;
dbif.typedCall('SetProperty', [
                {'type':'s', 'value': 'favorite'}, 
                {'type':'v', 'value': valueVariant}
            ]);
 

The Following User Says Thank You to Halftux For This Useful Post: