Take the community feedback survey now.
                AI OnAI Off
            
        Take the community feedback survey now.
public override void CreateChildControls(
                  string renderType,System.Web.UI.Control container)
{
  if (renderType == "default")
  {
     SetupForm();
     //
     // Form loaded. Do any changes to this.Form.Cells etc here...
     //
     this.Form.CssClass = this.CssClass;
     this.Form.CreateControls( container );
     CreateFormButtons( container );
  }
  else
  {
     base.CreateChildControls(renderType,container);  
  }
}