I want to do something similer to following code:
//test.qml import QtQuick 1.0 Item { var globalforJs =10; function increment() // JavaScript fu
the thing which you want to make global should be done like in this example
property variant name:"john"//i want this to be global onCreationCompleted(){ Qt.name = name }
whereever you want to use the name property use like Qt.name instead of just name.this also applicable for any ids of controls
Qt.name
name.this