Example #1
0
        protected override void CreateChildControls()
        {
            this.reportContainer = new Panel();
            this.AddHiddenControls(this.reportContainer);
            this.AddCommandPanel(this.reportContainer);
            this.AddReportBody(this.reportContainer);
            this.Controls.Add(this.reportContainer);

            PageUtility.AddMeta(this.Page, "generator", Assembly.GetAssembly(typeof(Report)).GetName().Name);

            if (this.AutoInitialize)
            {
                this.InitializeReport();
            }
        }
Example #2
0
        protected override void CreateChildControls()
        {
            this.Validate();

            this.scrudContainer = new Panel();

            this.LoadScrudContainer(this.scrudContainer);

            this.LoadTitle();
            this.LoadDescription();

            this.LoadGrid();

            this.InitializeScrudControl();

            PageUtility.AddMeta(this.Page, "generator", Assembly.GetAssembly(typeof(ScrudForm)).GetName().Name);

            this.Controls.Add(this.scrudContainer);
        }