Template used by the EditField control
Inheritance: ITemplate
Beispiel #1
0
        /// <summary>
        /// Performs basic instance initialization for a data control field.
        /// </summary>
        /// <param name="sortingEnabled">A value that indicates whether the control supports the sorting of columns of data.</param>
        /// <param name="control">The data control that owns the <see cref="T:System.Web.UI.WebControls.DataControlField"/>.</param>
        /// <returns>
        /// Always returns false.
        /// </returns>
        public override bool Initialize( bool sortingEnabled, Control control )
        {
            EditFieldTemplate editFieldTemplate = new EditFieldTemplate();
            editFieldTemplate.LinkButtonClick += editFieldTemplate_LinkButtonClick;
            this.ItemTemplate = editFieldTemplate;
            ParentGrid = control as Grid;

            return base.Initialize( sortingEnabled, control );
        }
Beispiel #2
0
        /// <summary>
        /// Performs basic instance initialization for a data control field.
        /// </summary>
        /// <param name="sortingEnabled">A value that indicates whether the control supports the sorting of columns of data.</param>
        /// <param name="control">The data control that owns the <see cref="T:System.Web.UI.WebControls.DataControlField"/>.</param>
        /// <returns>
        /// Always returns false.
        /// </returns>
        public override bool Initialize(bool sortingEnabled, Control control)
        {
            EditFieldTemplate editFieldTemplate = new EditFieldTemplate();

            editFieldTemplate.LinkButtonClick += editFieldTemplate_LinkButtonClick;
            this.ItemTemplate = editFieldTemplate;
            ParentGrid        = control as Grid;

            return(base.Initialize(sortingEnabled, control));
        }
Beispiel #3
0
        /// <summary>
        /// Performs basic instance initialization for a data control field.
        /// </summary>
        /// <param name="sortingEnabled">A value that indicates whether the control supports the sorting of columns of data.</param>
        /// <param name="control">The data control that owns the <see cref="T:System.Web.UI.WebControls.DataControlField"/>.</param>
        /// <returns>
        /// Always returns false.
        /// </returns>
        public override bool Initialize( bool sortingEnabled, Control control )
        {
            this.ItemStyle.HorizontalAlign = HorizontalAlign.Center;
            this.ItemStyle.CssClass = "grid-icon-cell edit";

            EditFieldTemplate editFieldTemplate = new EditFieldTemplate();
            editFieldTemplate.LinkButtonClick += editFieldTemplate_LinkButtonClick;
            this.ItemTemplate = editFieldTemplate;

            return base.Initialize( sortingEnabled, control );
        }
Beispiel #4
0
        /// <summary>
        /// Performs basic instance initialization for a data control field.
        /// </summary>
        /// <param name="sortingEnabled">A value that indicates whether the control supports the sorting of columns of data.</param>
        /// <param name="control">The data control that owns the <see cref="T:System.Web.UI.WebControls.DataControlField"/>.</param>
        /// <returns>
        /// Always returns false.
        /// </returns>
        public override bool Initialize(bool sortingEnabled, Control control)
        {
            this.ItemStyle.HorizontalAlign = HorizontalAlign.Center;
            this.ItemStyle.CssClass        = "grid-icon-cell edit";

            EditFieldTemplate editFieldTemplate = new EditFieldTemplate();

            editFieldTemplate.LinkButtonClick += editFieldTemplate_LinkButtonClick;
            this.ItemTemplate = editFieldTemplate;

            return(base.Initialize(sortingEnabled, control));
        }