Re: Components disappearing!

2006-02-10 Thread Mike Kienenberger
Did you implement StateHolder or Serializable for your new component? A common mistake when creating new components is to forget to do this, and the symptom is that it works the first time the page is requested and then stops working because all of the internal state is lost on the next request.

RE: Components disappearing!

2006-02-10 Thread Jesse Alexander \(KBSA 21\)
> HI ! > > I am trying to make a custom component, a sortable column > which is a column > with an output text and 2 command buttons at its header. > > I extends the UIcolumn component and put a htmlPanelGrid in it header. > HtmlPanelGrid contains an output text and 2 command buttons. > > I am