hide showall field for non ECMAScript clients

This commit is contained in:
Jan Dittberner 2010-06-11 23:40:00 +02:00
parent 8b1613346e
commit 4902064aab
2 changed files with 3 additions and 3 deletions

View file

@ -42,7 +42,7 @@ ${h.form(h.url_for(action='urllist'), method='get')}
${h.text('email',
h.escape(request.params.get('email', None), True), id='email')}<br />
</div>
<div id="showallfield">
<div id="showallfield" class="hidden">
${h.checkbox('showall', value='1', checked=False, id='showall')}
<label for="showall">${_(u'Show all form fields')}</label><br />
</div>

View file

@ -118,7 +118,7 @@ $(document).ready(function() {
$(defaultreadonlydivs[index]).hide();
}
$('#showall').attr('checked', false).change(onChangeShowAll);
$('#showallfield').show();
$('#email').blur(onBlurEmail).focus();
$('#showall').attr('checked', false);
$('#showall').change(onChangeShowAll);
});