diff options
Diffstat (limited to 'http/pkle2018-test.php')
-rw-r--r-- | http/pkle2018-test.php | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/http/pkle2018-test.php b/http/pkle2018-test.php index 9b056c1..c236c0d 100644 --- a/http/pkle2018-test.php +++ b/http/pkle2018-test.php @@ -27,13 +27,12 @@ function valiuc(x,y){ } } } - if( y==3 ){ + if( y>=2 ){ + if (y==2) x = document.getElementById("swk"); var z = document.getElementById('izw'); - if( valiuc(z,2) ){ - var srednieWk = x.value/z.value; - if(srednieWk < 0.15) srednieWk = 0.15; - document.getElementById('srd').value = srednieWk; - } + var srednieWk = x.value/z.value; + if(srednieWk < 0.15) srednieWk = 0.15; + document.getElementById('srd').value = srednieWk; } return true; } else { @@ -51,6 +50,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 loader(show) { @@ -84,6 +84,7 @@ function sendit(form) { var params = { type: parseInt(form.typ.value), contestants: parseInt(form.iuc.value), + players: parseInt(form.izw.value), title_sum: parseFloat(form.swk.value), tournament_rank: 8-form.rng.value, over39_boards: parseInt(form.rozdan.value) @@ -251,7 +252,7 @@ function submitit(ev){ <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)"><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 nieczterosobowych.</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)"><br /> <small>Suma WK wszystkich<br />zawodników.</small></td> |