memo.text = root["field1"] // not working memo.text = root."field1" // not working memo.text = root.field1 // not working memo.text = root.value("field1") // working
These two work now in the 1.0.rc4 memo.text = root."field1"; memo.text = root.getValue("field1");
Log in to post a comment.
These two work now in the 1.0.rc4
memo.text = root."field1";
memo.text = root.getValue("field1");