vote up 0 vote down star
2

Often I find myself writing a lot of ugly "foreach code" when I databind ASP.NET Repeaters/GridViews and such and I am thinking that there must exist a far superior way by using the lessons learned from jQuery and other CSS JavaScript selector frameworks also on the server side.

Does such a thing exist (PS! I'm answering this immediately ;)

flag

50% accept rate

1 Answer

vote up 0 vote down

Yes, there exists a project which is called RaSelector which is LGPL licensed and comes out this upcoming Friday in Ra-Ajax.

Though for the restless ones, there's even a complete code-sample licensed as MIT at Thomas Hansen's blog which of the short version is repeated here;

/*
 * Copyright 2008 - Thomas Hansen thomas@ra-ajax.org
 * This code is licensed under the MIT X11 license
 * 
 */

using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Collections.Generic;

namespace RaSelector
{
  /**
   * Helper class for doing selector queries on Controls to retrieve specific 
   * Controls in Page hierarchy. Kind of like a CSS selector only for the server-side.
   * This class can be very handsome in scenarios where you have GridViews or 
   * Data Repeators which are dynamically databound and you for some reason cannot 
   * use the ID directly or something but still need to traverse server-side Control 
   * hierarchy to find a specific control...
   */
  public static class Selector
  {
   /**
    * Recursively searches Control hierarchy for matches for Predicate and returns it as T
    */
   public static T SelectFirst<T>(Control from, Predicate<Control> predicate) 
     where T : Control
   {
     if (predicate(from))
       return from as T;
     foreach (Control idx in from.Controls)
     {
       T tmpRetVal = SelectFirst<T>(idx, predicate);
       if (tmpRetVal != null)
         return tmpRetVal;
     }
     return null;
   }

   /**
    * Recursively searches Control hierarchy for the first control that 
    * matches the type of T and returns it as T
    */
   public static T SelectFirst<T>(Control from) 
     where T : Control
   {
   return SelectFirst<T>(from,
     delegate(Control idx)
     {
       return idx is T;
     });
   }

   /**
    * Recursively search Control hierarcy for ALL controls that 
    * matches the given Predicate and returns them as T
    */
   public static IEnumerable<T> Select<T>(Control from, Predicate<Control> predicate) 
     where T : Control
   {
     if (from is T)
     {
       if (predicate(from))
         yield return from as T;
     }
     foreach (Control idx in from.Controls)
     {
       foreach (T idxInner in Select<T>(idx, predicate))
       {
         yield return idxInner;
       }
     }
   }

   /**
    * Recursively search Control hierarcy for ALL controls that 
    * matches the type of T and returns them as T
    */
   public static IEnumerable<T> Select<T>(Control from) where T : Control
   {
     return Select<T>(from,
       delegate(Control idx)
       {
         return idx is T;
       });
   }
  }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.