Hi,
Thanks for the reply.
Here is the sample code snippet:
var AccountCreationCreatedView = new utils.Class({
/**
* Defines the name of this class.
*
* @property Name
*/
Name: "AccountCreationCreatedView",
Extends: WizardView,
initialize: function(nextLabel, previousLabel) {
this._super("Account Creation", nextLabel, previousLabel);
//Account Created header
var HeadingText = new TextLabel("<b>Account Created</b>");
HeadingText.setCssBaseName("HeadingTextLabel");
this.wizardView.addControl(HeadingText);
//Account Created Details label
var accountCreatedDetailsLabel = new TextLabel("You have successfully registered and can continue on to the service.");
this.wizardView.addControl(accountCreatedDetailsLabel);
this.enableNextStep();
},
onNextStepClick: function() {
alert("To be continued");
}
});
There are 31 lines whereas JSMeter shows total lines as 28. Also the function "initialize" is not shown, If I move this line:
Extends: WizardView,to the first line, then its working fine!
Could you please fix these in the trunk?
Manohar
http://sqlyog.wordpress.com/