Jacek Kałucki wrote: > Hi, > > Did the framework offers a way to determine control value change at form > level? > At the control level, I can use onInteractiveChange event, but when control > losses focus, there is no possibility to determine change, because the > control > attribute "_oldVal" is reseted to "Value", regardless the change comes > from user or application. > Couldn't resetting "_oldVal" take place only when change comes from > application? > >
Jacek, In your Form afterInit method after you declare the controls, just do: myControl.BindEvent(dabo.dEvents.ValueChanged, self.onMyControlValueChanged) where myControl is your control, and self.onMyControlValueChanged is the method you want to call to handle the event. Regards, Nate _______________________________________________ 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/[email protected]
