> I'm doing some experimenting with ComponentTag.getAttributes() - it
looks
> like the one!!

Doh! It doesn't seem to work. No matter how many attributes I add to the
tag and no matter whether I add the wicket: namespace to them or not I
only ever see the single wicket:id attribute when I run this code in the
IComponentResolver.resolve method:

tag is the ComponentTag passed into the resolve method by wicket.

        Set atSet = tag.getAttributes().keySet();
                
        Iterator ai = atSet.iterator();
                
        while (ai.hasNext())
        {
                logger.trace("key = " + ai.next());
        }

Any ideas on what I'm doing wrong.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to