Hello,
I am trying to run the code given in http://www.smartclient.com/smartgwt/showcase/#rotation_new which is an example showing rotation of shapes.
I have made the class containing the showcase code my entry point class, this is the error I get when i try to run it--
Caused by: com.google.gwt.core.client.JavaScriptException: (TypeError): Cannot call method 'create' of undefined
at ----------------------
at ----------------------
at ----------------------
at ----------------------
at com.arvindikchari.bspinner.client.Spinner.onModuleLoad(Spinner.java:219)
... 9 more
The line in question is the following code--
layout.addMember(drawPane);
Why am I getting this error? What is wrong with my code?
Is there some place where I can read on what all elements have to be defined, before a control is drawn using Smart GWT? That would be very helpful for me...
Regards,
Arvind.
I am trying to run the code given in http://www.smartclient.com/smartgwt/showcase/#rotation_new which is an example showing rotation of shapes.
I have made the class containing the showcase code my entry point class, this is the error I get when i try to run it--
Caused by: com.google.gwt.core.client.JavaScriptException: (TypeError): Cannot call method 'create' of undefined
at ----------------------
at ----------------------
at ----------------------
at ----------------------
at com.arvindikchari.bspinner.client.Spinner.onModuleLoad(Spinner.java:219)
... 9 more
The line in question is the following code--
layout.addMember(drawPane);
Why am I getting this error? What is wrong with my code?
Is there some place where I can read on what all elements have to be defined, before a control is drawn using Smart GWT? That would be very helpful for me...
Regards,
Arvind.
Comment