In data lunedì 23 giugno 2014 14:41:37, Sebastien ha scritto:
> Hi Lucio,
> 
> You guessed right, JS libraries are embedded in the jar(s), and attached to
> the page as soon as you use a jquery-ui/kendo component. Please check
> either:
> - the wicket-jquery-ui jars are well deployed.

What should I do to check that? I've already looked at page source and the js 
links are working (see below).

> - the js are well included in the page's head

I have this right after <head>

<script type="text/javascript" 
src="../resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.11.0-
ver-1397687590000.js"></script>
<script type="text/javascript" 
src="../resource/com.googlecode.wicket.jquery.core.resource.JQueryUIResourceReference/jquery-
ui-1.10.4.custom-ver-1398510244000.js"></script>
<script type="text/javascript" id="jquery-datepicker-1401590941">
/*<![CDATA[*/
jQuery(function() { jQuery('#datanascita3f').datepicker({  }); });
/*]]>*/
</script>


> If I remember correctly, somebody had a similar problem (I dont remember
> what was the issue), please have a look in the archives...

Already tried, but I haven't found anything similar, maybe it's not 
immediately obvious from the message subject that the issue is what I'm 
looking for. Google didn't help either.

However I have (another) suspect: could my custom ready() function conflict 
with jquery-ui/kendo/whatever? 

$(document).ready(function(){
  $(".euro1").next("ul").slideUp(1);
  $(".tab_schedina").slideUp(1);
  $(".tab_quotemigliori").slideUp(1);
  $(".compara_link").slideUp(1);
  
  $(".euro1").click(function(){
    $(this).next("ul").slideToggle(1000);
  });
  
  $(".dic_schedina").click(function(){
    $(".tab_schedina").slideToggle(600);
    $(".tab_quotemigliori").slideToggle(600);
    $(".compara_link").slideToggle(600);
  });
    
});




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

Reply via email to