diff options
author | rub <rub@piwigo.org> | 2008-10-07 19:18:55 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2008-10-07 19:18:55 +0000 |
commit | f5c5154ddf39edd7882ee7aa8f751e08fe1ab7fb (patch) | |
tree | 452734563a4895075cfc1392efb95f983f43c169 /admin/template/goto/element_set_unit.tpl | |
parent | 0bbeccaab36b24be8651b4b108e036b06974558c (diff) |
jQuery Datepicker:
o use id for selector
o check radio button on change date
git-svn-id: http://piwigo.org/svn/trunk@2680 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/template/goto/element_set_unit.tpl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/admin/template/goto/element_set_unit.tpl b/admin/template/goto/element_set_unit.tpl index c2b38a00d..a5690885b 100644 --- a/admin/template/goto/element_set_unit.tpl +++ b/admin/template/goto/element_set_unit.tpl @@ -54,24 +54,24 @@ <label><input type="radio" name="date_creation_action-{$element.ID}" value="unset" /> {'unset'|@translate}</label> <label><input type="radio" name="date_creation_action-{$element.ID}" value="set" id="date_creation_action_set-{$element.ID}" /> {'set to'|@translate}</label> - <select onmousedown="document.getElementById('date_creation_action_set-{$element.ID}').checked = true;" name="date_creation_day-{$element.ID}"> + <select id="date_creation_day-{$element.ID}" name="date_creation_day-{$element.ID}"> <option value="0">--</option> {section name=day start=1 loop=32} <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$element.DATE_CREATION_DAY}selected="selected"{/if}>{$smarty.section.day.index}</option> {/section} </select> - <select onmousedown="document.getElementById('date_creation_action_set-{$element.ID}').checked = true;" name="date_creation_month-{$element.ID}"> + <select id="date_creation_month-{$element.ID}" name="date_creation_month-{$element.ID}"> {html_options options=$month_list selected=$element.DATE_CREATION_MONTH} </select> - <input onmousedown="document.getElementById('date_creation_action_set-{$element.ID}').checked = true;" + <input id="date_creation_year-{$element.ID}" name="date_creation_year-{$element.ID}" type="text" size="4" maxlength="4" value="{$element.DATE_CREATION_YEAR}" /> - <input name="date_creation_linked_date-{$element.ID}" type="hidden" size="10" disabled="disabled"/> + <input id="date_creation_linked_date-{$element.ID}" name="date_creation_linked_date-{$element.ID}" type="hidden" size="10" disabled="disabled"/> <script type="text/javascript"> - pwg_initialization_datepicker("select[name=date_creation_day-{$element.ID}]", "select[name=date_creation_month-{$element.ID}]", "input[name=date_creation_year-{$element.ID}]", "input[name=date_creation_linked_date-{$element.ID}]"); + pwg_initialization_datepicker("#date_creation_day-{$element.ID}", "#date_creation_month-{$element.ID}", "#date_creation_year-{$element.ID}", "#date_creation_linked_date-{$element.ID}", "#date_creation_action_set-{$element.ID}"); </script> </td> </tr> |