diff options
author | emkael <emkael@tlen.pl> | 2019-02-14 14:08:28 +0300 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2019-02-14 14:08:28 +0300 |
commit | 6629c7e53cbe43016451cdb191ef2b7581cff134 (patch) | |
tree | a85f659b4ee83b60ba5d2755bb471e392fcc5369 /http | |
parent | af780009430cf5b1b511cf2b75479fd072d391cd (diff) |
Ability set number of players for team events manually
Diffstat (limited to 'http')
-rw-r--r-- | http/pkle2018.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/http/pkle2018.php b/http/pkle2018.php index 5e7e9e1..b4721ba 100644 --- a/http/pkle2018.php +++ b/http/pkle2018.php @@ -296,13 +296,12 @@ function valiuc(x,y){ } } } - if( y==3 ){ - var z = document.getElementById('izw'); - if( valiuc(z,2) ){ + if( y>=2 ){ + if (y==2) x = document.getElementById("swk"); + var z = document.getElementById('izw'); var srednieWk = x.value/z.value; if(srednieWk < 0.15) srednieWk = 0.15; document.getElementById('srd').value = srednieWk; - } } return true; } else { @@ -320,6 +319,7 @@ function typtur(x){ if( t.value!=null && t.value!='' && isFinite(t.value) ){ z.value = x * t.value; } + document.getElementById('izw').readOnly = (x < 4); } function submitit(){ @@ -465,7 +465,7 @@ function submitit(){ <small>W zależności od typu<br />ilość indywidualistów,<br />par lub teamów</small></td> <td align="CENTER" valign=top>ZAWODNIKÓW<br /> <input type="text" id="izw" name="izw" readonly="readonly" maxlength="4" style="width:50px" onblur="valiuc(this,2)"<?php if( $izw>0 ){echo ' value="'.$izw.'"';}?>><br /> - <small>To pole jest wyliczane<br />automatycznie.</small></td> +<small>To pole jest wyliczane<br />automatycznie, ale możesz poprawić je<br />dla teamów nieczterosobowoych.</small></td> <td align="CENTER" valign=top>SUMA WK<br /> <input type="text" id="swk" name="swk" maxlength="7" style="width:70px" onblur="valiuc(this,3)"<?php if( $swk>0 ){echo ' value="'.$swk.'"';}?>><br /> <small>Suma WK wszystkich<br />zawodników.</small></td> |