date convert function
function dateformatter(v) {alert(v);}
the follow code can not invoke dateformatter to conver date format.
<input id="dd" class="easyui-datebox" formatter="dateformatter"></input>
but if using the following code, it works!
<input id="dd"></input>
<script type="text/javascript">
$('#dd').datebox({
formatter: dateformatter
});
</script>