/// <summary>
 /// Preferred Constructor - Add a reference to the wwDataBinder object here
 /// so a reference can be passed to the children.
 /// </summary>
 /// <param name="Parent"></param>
 public wwDataBindingItemCollection(wwDataBinder Parent)
 {
     this._ParentDataBinder = Parent;
 }
 /// <summary>
 /// Overridden constructor to allow DataBinder to be passed
 /// as a reference. Unfortunately ASP.NET doesn't fire this when
 /// creating the DataBinder child items.
 /// </summary>
 /// <param name="Parent"></param>
 public wwDataBindingItem(wwDataBinder Parent)
 {
     this._Binder = Parent;
 }
Beispiel #3
0
 /// <summary>
 /// Overridden constructor to allow DataBinder to be passed
 /// as a reference. Unfortunately ASP.NET doesn't fire this when
 /// creating the DataBinder child items.
 /// </summary>
 /// <param name="Parent"></param>
 public wwDataBindingItem(wwDataBinder Parent)
 {
     this._Binder = Parent;
 }
		/// <summary>
		/// Preferred Constructor - Add a reference to the wwDataBinder object here
		/// so a reference can be passed to the children.
		/// </summary>
		/// <param name="Parent"></param>
		public wwDataBindingItemCollection(wwDataBinder Parent)
		{
			this._ParentDataBinder = Parent;
		}