Re: [Interest] SCXML Statemachine donedata event

2016-11-28 Thread Ulf Hermann
Connections|{| ||target|: stateMachine| |onEventOccurred: {| |console.|log|(event.name)| |}| |}| From QML you should use the EventConnection QML type. About like this: EventConnection { stateMachine: stateMachine events: ["done.state.*"] // or ["done.state.somespecificst

[Interest] SCXML Statemachine donedata event

2016-11-28 Thread Bublitz, Wolf
Hallo, I am experimenting with the new QScxmlStateMachine. Currently I am running a state machine with JavaScript data model and I am wondering how to catch the donedata event. For example my statemachine defines the following final state: According to the SCXML spe