Hi,
I updated my SmartClient to version 8.1. And now I have small problem with values manager. When I create new DynamicForm I set valuesManager attribute to string, and I expected that new ValuesManger will be created like before. Canvas.init() call DataBoundComponent.initializeValuesManager(). But now DynamicForm.initWidget() contains this:
Which remove my String attribute valuesManager, and my value is lost for DataBoundComponent.initializeValuesManager(). So may be something like this will be better:
Thanks for your answer.
I updated my SmartClient to version 8.1. And now I have small problem with values manager. When I create new DynamicForm I set valuesManager attribute to string, and I expected that new ValuesManger will be created like before. Canvas.init() call DataBoundComponent.initializeValuesManager(). But now DynamicForm.initWidget() contains this:
Code:
if (isc.isA.String(this.valuesManager))
this.valuesManager = window[this.valuesManager];
Code:
if (isc.isA.String(this.valuesManager)) {
if(window[this.valuesManager]) {
this.valuesManager = window[this.valuesManager];
}
}
Thanks for your answer.
Comment