Skip to content

Instantly share code, notes, and snippets.

@mbroadst
Created January 25, 2013 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbroadst/4636785 to your computer and use it in GitHub Desktop.
Save mbroadst/4636785 to your computer and use it in GitHub Desktop.
// replace this
Binding { target: testData; property: "settings.network.test"; value: nameField.text }
Binding { target: nameField; property: "text"; value: testData["settings.network.test"] }
// with this
TwoWayBinding { objectOne: testData; targetOne: "settings.network.test";
objectTwo: nameField; targetTwo: "text" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment