Template:SPADI: Difference between revisions

From WikiMSK

No edit summary
No edit summary
Line 3: Line 3:
''How severe is your pain? Circle the number that best describes your pain where: 0 = no pain and 10 = the worst pain imaginable.''
''How severe is your pain? Circle the number that best describes your pain where: 0 = no pain and 10 = the worst pain imaginable.''


{| class="wikitable pain-table"
{| class="wikitable pain-table spadi-table"
|-
|-
| colspan="13"|'''<h5>Pain scale</h5>'''
| colspan="13"|'''<h5>Pain scale</h5>'''
Line 25: Line 25:
|}
|}


{| class="wikitable disability-table"
{| class="wikitable disability-table spadi-table"
| colspan="13"|'''<h5>Disability scale</h5>'''
| colspan="13"|'''<h5>Disability scale</h5>'''
|-
|-
Line 61: Line 61:
!
!
! class="disability-score"|Score: 0%
! class="disability-score"|Score: 0%
|-
! Total Score :
!
! class="total-score"|Score: 0%
|}
|}
<div style="display:none"><html><script type="text/javascript">
<div style="display:none"><html><script type="text/javascript">
Line 70: Line 74:
  var painScore = 0;
  var painScore = 0;
  var disabilityScore = 0;
  var disabilityScore = 0;
var totalScore =0;




Line 78: Line 83:
$(".disability-table").find("input[type=radio]").filter(":checked").each(function(){
$(".disability-table").find("input[type=radio]").filter(":checked").each(function(){
   disabilityScore += parseInt($(this).attr("value").replace(",", "."));
   disabilityScore += parseInt($(this).attr("value").replace(",", "."));
});
$(".spadi-table").find("input[type=radio]").filter(":checked").each(function(){
  totalScore += parseInt($(this).attr("value").replace(",", "."));
});
});


Line 83: Line 92:
   $('.pain-score').html('Score: ' + ((painScore/50) * 100) + '%' )
   $('.pain-score').html('Score: ' + ((painScore/50) * 100) + '%' )
   $('.disability-score').html('Score: ' + ((disabilityScore/80) * 100) + '%' )
   $('.disability-score').html('Score: ' + ((disabilityScore/80) * 100) + '%' )
  $('.total-score').html('Score: ' + ((totalScore/130).toFixed(2) * 100) + '%' )
  }
  }
}
}
</script></html></div>
</script></html></div>
<noinclude>[[Category:Calculators]]</noinclude>
<noinclude>[[Category:Calculators]]</noinclude>

Revision as of 19:55, 23 March 2023

Shoulder Pain and Disability Index (SPADI)

How severe is your pain? Circle the number that best describes your pain where: 0 = no pain and 10 = the worst pain imaginable.

Pain scale
How severe is your pain?
Circle the number that best describes your experience where: 0 = no difficulty and 10 = so difficult it requires help.
Item Question 0 1 2 3 4 5 6 7 8 9 10
1 At its worst?
2 When lying on the involved side?
3 Reaching for something on a high shelf?
4 Touching the back of your neck?
5 Pushing with the involved arm?
Disability scale
How much difficulty do you have?
Circle the number that best describes your experience where: 0 = no difficulty and 10 = so difficult it requires help.
Item Question 0 1 2 3 4 5 6 7 8 9 10
6 Washing your hair?
7 Washing your back?
8 Putting on an undershirt or jumper?
9 Putting on a shirt that buttons down the front?
10 Putting on your pants?
11 Placing an object on a high shelf?
12 Carrying a heavy object of 10 pounds (4.5 kilograms)
13 Removing something from your back pocket?
Pain Score : Score: 0%
Disability Score : Score: 0%
Total Score : Score: 0%