I found the solution....it is not a wicket problem. The problem was in my
CSS files. 
 

marius1maru wrote:
> 
> Hello,
>  I'm using a ListView of links limited to only 5 links, an
> AjaxFallbackLink (showMore) that will remove the limitation, and another
> AjaxFallbackLink 
> (showLess) that will enable the limitation. 
>   Works fine on every browser except IE6. On IE6, after the user presses
> showMore link, the list will expand, but the links are frosen(I can see
> them, but 
> can not click on them).
>   The code looks like this:
> 
>     in html:
>    
>  
>  <p> #  </p>
>         
>  
>         <p>
>      #  
>      #  
>        </p>
>     
> 
>   in java:
>   
>     final AjaxFallbackLink showLessLink = new AjaxLink("showLessLink") 
>  {
> �...@override
>  public void onClick(AjaxRequestTarget target) 
>   {
>   linksList.setViewSize(5);
>   showMoreSpan.setVisible(true);
>   showLessSpan.setVisible(false);
>   target.addComponent(listContainer);
>   }
>  };
>  showLessLink.add(new Label("showLess", "<<less"));
>  final AjaxFallbackLink showMoreLink = new AjaxLink("showMoreLink") 
>   {
> �...@override
>   public void onClick(AjaxRequestTarget target) 
>    {
>    linksList.setViewSize(linksList.getList().size());
>    showMoreSpan.setVisible(false);
>    showLessSpan.setVisible(true);
>    target.addComponent(listContainer);
>    }
>   };
>  showMoreLink.add(new Label("showMore", "more>>"));
>  final WebMarkupContainer showLessSpan = new
> WebMarkupContainer("showLessSpan");
>  showLessSpan.setOutputMarkupId(true);
>  showLessSpan.setVisible(false);
>  final WebMarkupContainer showMoreSpan = new
> WebMarkupContainer("showMoreSpan");
>  showLessSpan.setOutputMarkupId(true);
>  showLessSpan.setVisible(true);
>  showLessSpan.add(showLessLink);
>  showMoreSpan.add(showMoreLink);
>  listContainer.add(showLessSpan);
>  listContainer.add(showMoreSpan);
> 
>     After the first ajax request(by clicking on "showMore" link), the
> "showLess" link is displayed, but frozen. The same results is when I'm
> using AjaxLink.
>     I am using wicket 1.4 rc2.
>     Can please someone help me?
> 
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/AjaxFallbackLink-problem-on-Internet-Explorer-6-tp23501338p23523016.html
Sent from the Wicket - User mailing list archive at Nabble.com.


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

Reply via email to