I want to do something similer to following code:
//test.qml
import QtQuick 1.0
Item
{
var globalforJs =10;
function increment() // JavaScript function
{
globalforJs++;
}
....
QML Code
Can we have global variable in QML file
and access it from the JavaScript function?
Try property int globalForJs: 10;
If you want a variable that can take any type:
property var globalForJs: 10
Prior to QML 2, use the variant
keyword instead of var
.