suneel gundlapalli wrote:Thanks for posting your solution for the problem Colin. Helped me solve my problem too.
Bear Bibeault wrote:I did not have to look far to see a problem.
if(label == null)
label = value;
You are modifying an instance variable from within the tag. That's a no no.
The instance variables that represent attribute values can only be set by the container. You muck with them under the covers, and all hell breaks loose.
David Newton wrote:Some containers may cache tags, too.