Ejemplo n.º 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 )
 {
     LiquidFieldTemplate liquidFieldTemplate = new LiquidFieldTemplate();
     this.ItemTemplate = liquidFieldTemplate;
     this.ParentGrid = control as Grid;
     return base.Initialize( sortingEnabled, control );
 }
Ejemplo n.º 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)
        {
            LiquidFieldTemplate liquidFieldTemplate = new LiquidFieldTemplate();

            this.ItemTemplate = liquidFieldTemplate;
            this.ParentGrid   = control as Grid;
            return(base.Initialize(sortingEnabled, control));
        }