ragazzi..

ho risolto così:
<!-- Dichiarazione -->
<?php JHTML::_('behavior.calendar'); ?>
<!-- Esempio per il richiamo -->
<input type="text" name="data_evento" id="data_evento" readonly="1"/>
<input type="button" name="pdata_evento" id="pdata_evento" value="..."/>
<script type="text/javascript">
Calendar.setup({
inputField : "data_evento", // id of the input field
ifFormat : "%d/%m/%Y", // format of the input field
button : "pdata_evento", // trigger for the calendar (button ID)
singleClick : true, // double-click mode
step : 1 // show all years in drop-down boxes (instead of every other year as default)
});
</script>
Ciao
deMolay