I would like to hide the arrows for changing months, I haven’t found any option to do such.
I’ve been able to hide them by using the following code
$(".jqx-icon-arrow-left").css('visibility', 'collapse');
$(".jqx-icon-arrow-left").css('display', 'none');
$(".jqx-icon-arrow-right").css('visibility', 'collapse');
$(".jqx-icon-arrow-right").css('display', 'none');
but the thing is I need to do that a few seconds after it is displayed (setTimeout) ugly…
Also, is there a calendar fully loaded event I could use ?
Thanks for your time all.