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/picture_modify.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 'admin/template/goto/picture_modify.tpl')
-rw-r--r-- | admin/template/goto/picture_modify.tpl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/admin/template/goto/picture_modify.tpl b/admin/template/goto/picture_modify.tpl index ddf4e3fc4..a35f07436 100644 --- a/admin/template/goto/picture_modify.tpl +++ b/admin/template/goto/picture_modify.tpl @@ -5,7 +5,7 @@ {literal} <script type="text/javascript"> - pwg_initialization_datepicker("select[name=date_creation_day]", "select[name=date_creation_month]", "input[name=date_creation_year]", "input[name=date_creation_linked_date]"); + pwg_initialization_datepicker("#date_creation_day", "#date_creation_month", "#date_creation_year", "#date_creation_linked_date", "#date_creation_action_set"); </script> {/literal} @@ -96,22 +96,22 @@ <td> <label><input type="radio" name="date_creation_action" value="unset" /> {'unset'|@translate}</label> <input type="radio" name="date_creation_action" value="set" id="date_creation_action_set" /> {'set to'|@translate} - <select onmousedown="document.getElementById('date_creation_action_set').checked = true;" name="date_creation_day"> + <select id="date_creation_day" name="date_creation_day"> <option value="0">--</option> {section name=day start=1 loop=32} <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$DATE_CREATION_DAY_VALUE}selected="selected"{/if}>{$smarty.section.day.index}</option> {/section} </select> - <select onmousedown="document.getElementById('date_creation_action_set').checked = true;" name="date_creation_month"> + <select id="date_creation_month" name="date_creation_month"> {html_options options=$month_list selected=$DATE_CREATION_MONTH_VALUE} </select> - <input onmousedown="document.getElementById('date_creation_action_set').checked = true;" + <input id="date_creation_year" name="date_creation_year" type="text" size="4" maxlength="4" value="{$DATE_CREATION_YEAR_VALUE}" /> - <input name="date_creation_linked_date" type="hidden" size="10" disabled="disabled"/> + <input id="date_creation_linked_date" name="date_creation_linked_date" type="hidden" size="10" disabled="disabled"/> </td> </tr> |