Hello all
I am using Swiz framework..
I have a model(info) with xml data(curScenario) and a view with some display
function(refreshGrids) which should run whenever the xml data changes.
curScenario is marked [bindable] and public
I've tried to bind the function to the changes using this line in
creationcomplete handler-
var watcherSetter:ChangeWatcher =
BindingUtils.bindSetter(refreshGrids,info, "curScenario");
however it doesnt work... the function is never called BUT one timewhen this
row is executed inside the handler...
What am I doing wrong?
10x in advance
Afik