DrupalBin
Submit Code
About
Recent Posts
Fix for Views cumulus: tag_cloud
Fix for Code
sjfgjgjfgidfgh
Code
Code
test.berniecram.com.alias.drushrc.php
Code
provision-deploy error
Create node programmatically with file
Code
more
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Log in using OpenID
Cancel OpenID login
Create new account
Request new password
Tags
CCK
drupal
fapi
jquery
menu
module
php
simpletest
taxonomy
test
theme
views
more tags
Home
Fix for Fix for Disable a form using jQuery, then Renable with a button
View
Fix
January 21, 2009 - 11:34pm — Anonymous
Drupal.
behaviors
.
enableSignupEditForm
=
function
(
context
)
{
var
$button
=
$
(
'#edit-update-signup'
,
context
)
.
click
(
changeValues
)
;
var
$form_elements
=
$button.
parents
(
'form:first'
)
.
find
(
'input:not(:hidden), textarea, select'
)
;
var
original_button_title
=
$button.
val
(
)
;
$form_elements.
attr
(
'disabled'
,
'disabled'
)
;
$button.
attr
(
'disabled'
,
''
)
.
val
(
Drupal.
t
(
'Change values'
)
)
;
$
(
'#edit-cancel-signup'
)
.
attr
(
'disabled'
,
''
)
.
click
(
enableCancel
)
;
function
changeValues
(
)
{
$form_elements.
attr
(
'disabled'
,
''
)
;
$button.
unbind
(
'click'
,
enableForm
)
.
val
(
original_button_title
)
;
return
false
;
}
function
enableCancel
(
)
{
$form_elements.
attr
(
'disabled'
,
''
)
;
}
}
Forms
jquery
Submit Fix
Summary:
Tags:
Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Show summary in full view
Drupal.behaviors.enableSignupEditForm = function(context) { var $button = $('#edit-update-signup', context).click(changeValues); var $form_elements = $button.parents('form:first').find('input:not(:hidden), textarea, select'); var original_button_title = $button.val(); $form_elements.attr('disabled', 'disabled'); $button.attr('disabled', '').val(Drupal.t('Change values')); $('#edit-cancel-signup').attr('disabled', '').click(enableCancel); function changeValues() { $form_elements.attr('disabled', ''); $button.unbind('click', enableForm).val(original_button_title); return false; } function enableCancel() { $form_elements.attr('disabled', ''); } }
Syntax highlighting mode:
ActionScript
ColdFusion
Diff
Drupal 5
Drupal 6
HTML
INI
Javascript
MySQL
PHP
Python
robots.txt
SQL
Text
Select the syntax highlighting mode to use.
See Also:
Order
Title:
URL:
-1
0
1
Title:
URL:
-1
0
1
Any links you'd like to have associated with the post (Drupal.org issue, Wikipedia article, etc).
File attachments
Changes made to the attachments are not permanent until you save this post. The first "listed" file will be included in RSS feeds.
Attach new file:
The maximum upload size is
1 MB
. Only files with the following extensions may be uploaded:
jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp phps
.