On 6/30/05, Mike Kienenberger <[EMAIL PROTECTED]> wrote:
> However, my custom DataTable subclass keeps picking up the renderer in
> src/myfaces:org.apache.myfaces.renderkit.html.HtmlTableRenderer, which
> is a subclass of
> HtmlTableRendererBase, but not of ext.HtmlTableRenderer.
> 
> So the rendering of my UIColumns used to work, but no longer works.
> 
> For the life of me, I can't figure out how to make my custom DataTable
> class pick up the renderer in ext.HtmlTableRenderer rather than the
> other one.
> 
> My DataTable subclass extends
> org.apache.myfaces.component.html.ext.HtmlDataTable, but I guess
> that's not sufficient.

Oops.   my DataTableTag subclass implemented

  public String getRendererType()
  {
      return "javax.faces.Table";
  }

instead of 

  public String getRendererType()
  {
      return "org.apache.myfaces.Table";
  }

Reply via email to