Exemple #1
0
 /// <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;
 }
Exemple #2
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;
 }