The problem is in wicket-ajax.js file. In 1.4-rc1 it is line #1448:
if (typeof(id) == "string" && id.length > 0) {
Change it to:
if ((typeof(id) == "String" || typeof(id) == "string") && id.length > 0) {

and it all works.
Cheers!


miro wrote:
> 
> My  page has IndicatingAjaxLink    When user clicks on this  link   the
> busy indicator never stops , it works fine in firefox 
> 
> here some html
> 
>                                               <tbody 
> wicket:id="auditInfoContainer"
> style="width:100%;height:556;overflow:auto;"> 
>                                                       <wicket:container 
> wicket:id="auditInfos">
>                                                               <tr 
> wicket:id="auditInfo"  height="10" >
>                                                                               
> <td>
>                                                                               
>         
>                                                                               
> </td>   
>                                                                               
> <td>
>                                                                               
>         
>                                                                               
> </td>   
>                                                                               
> <td>
>                                                                               
>         
>                                                                               
> </td>
>                                                                               
> <td>
>                                                                               
>         
>                                                                               
> </td>
>                                                                               
> <td>
>                                                                               
>         
>                                                                               
> </td>
>                                                                               
> <td>
>                                                                               
>         
>                                                                               
> </td>
>                                                                               
> <td>
>                                                                               
>         
>                                                                               
> </td>
>                                                                               
> <td>
>                                                                               
>         
>                                                                               
> </td>
>                                                                               
> <td>
>                                                                               
>         
>                                                                               
> </td>
>                                                               </tr>
>                                                       </wicket:container>     
>                                               </tbody>
> auditInfo   is the link .
> 
> I am using wicket 1.3.5  
> 

-- 
View this message in context: 
http://www.nabble.com/ajax-busy-indicator-never-stops-in-IE-tp20485948p20665553.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to