You are not logged in.
Pages: 1
now that the backend is more customizable, is there a way to add the jquery date picker to a custom field?
this is because one of my sites uses ISO date to sort events, and this datepicker could probably input the ISO really quickly. thanks.
Last edited by mrtunes (2009-12-03 15:20:55)
Offline
I might be missing some css or something (not very familiar with jQuery UI) but you could modify the classic admin theme by changing html_head to something like this.
function html_head()
{
return '<link href="'.$this->url.'textpattern.css" rel="stylesheet" type="text/css" /><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script><script type="text/javascript">$(document).ready( function(){$("#custom-1").datepicker();})</script>'.n;
}
or create a plugin that does it.
Last edited by MattD (2009-12-03 16:28:25)
Offline
Where can I download the msd_admin_datepicker? :P
Offline
Speechless.
Offline
Pages: 1