dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #25425
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 12617: Fixed bug - Don't disable all radio button when an event which the block-entry-form property is a...
------------------------------------------------------------
revno: 12617
committer: Tran Chau <tran.hispvietnam@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2013-10-14 08:18:38 +0700
message:
Fixed bug - Don't disable all radio button when an event which the block-entry-form property is active completed.
modified:
dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/entry.js
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/entry.js'
--- dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/entry.js 2013-10-11 10:29:07 +0000
+++ dhis-2/dhis-web/dhis-web-caseentry/src/main/webapp/dhis-web-caseentry/javascript/entry.js 2013-10-14 01:18:38 +0000
@@ -690,7 +690,7 @@
{
jQuery("#entryFormContainer :input").each(function()
{
- disable($(this).attr('id'));
+ $(this).attr('disabled','disabled');
});
jQuery("#entryFormContainer").find(".ui-combobox").each(function()
{