Hello,
After taking the latest v8.3p_2013-03-15/Pro Deployment 2013-03-15 we are unable to start our application.
We get this error: Error :Cannot change configuration property '_autoAssignedID' to true after the component has been created.
It happens when a canvas is created:
And originates from here:
Thanks
After taking the latest v8.3p_2013-03-15/Pro Deployment 2013-03-15 we are unable to start our application.
We get this error: Error :Cannot change configuration property '_autoAssignedID' to true after the component has been created.
It happens when a canvas is created:
Code:
com.smartgwt.client.widgets.BaseWidget.error(BaseWidget.java:647) com.smartgwt.client.widgets.BaseWidget.error(BaseWidget.java:635) com.smartgwt.client.widgets.BaseWidget.setAttribute(BaseWidget.java:895) com.smartgwt.client.widgets.BaseWidget.<init>(BaseWidget.java:108) com.smartgwt.client.widgets.Canvas.<init>(Canvas.java:106)
Code:
public BaseWidget() { internalSetID(SC.generateID(getClass().getName())); setAttribute("_autoAssignedID", true, false); }
Comment