Skip to content

Commit

Permalink
Fixes #12
Browse files Browse the repository at this point in the history
  • Loading branch information
drn05r committed Jan 24, 2025
1 parent 6842595 commit 8b03a41
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/static/javascript/auto/reports.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ var onFormSelect = function(){
{
$(input).setAttribute("disabled", "disabled");
});
$(elem).select('select').each(function (select)
{
$(select).setAttribute("disabled", "disabled");
});
});

//show the form we want
Expand All @@ -51,6 +55,11 @@ var onFormSelect = function(){
{
$(input).removeAttribute("disabled");
});
//enable this form's select elements
$(formid).select('select').each(function (select)
{
$(select).removeAttribute("disabled");
});

};

Expand Down

0 comments on commit 8b03a41

Please sign in to comment.