Carl Karsten wrote: > Ed Leafe wrote: >> The fact that this happens when you change the value should give you >> a clue. DataBinding is dynamic, and as a result is evaluated when it >> is used; > > That seems to be incorrect. otherwise, "myObj" would be evaluated.
The only strings that are evaluated are "self", "form", and "app". >> If myObj exists at the time you are assigning the DataSource, then >> use the object reference, not a string containing a temporary name to >> that object. > > That does not answer my question. > > The reason I want to understand is so I can figure out how to "use the object > reference" when creating the textbox in the CD? For your use in the CD, the object reference won't be in scope, so you can't do it that way. Can you assign myObj as an attribute of your app or form, and then reference it in the data-binding as "app.myObj" or "form.myObj"? -- pkm ~ http://paulmcnett.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/dabo-users/[EMAIL PROTECTED]
