[Redizajn 1ka] Popravki
This commit is contained in:
parent
11d795479d
commit
991c2e975d
@ -7437,7 +7437,7 @@ class Branching {
|
|||||||
// gumbi na desni v novem oknu
|
// gumbi na desni v novem oknu
|
||||||
if ($vrednost==0) {
|
if ($vrednost==0) {
|
||||||
|
|
||||||
// floating box
|
// floating box
|
||||||
echo '<div id="div_condition_editing_float">';
|
echo '<div id="div_condition_editing_float">';
|
||||||
|
|
||||||
|
|
||||||
|
@ -1610,14 +1610,7 @@ class BranchingAjax {
|
|||||||
if ($_GET['izpis'] == 'long') {
|
if ($_GET['izpis'] == 'long') {
|
||||||
echo '<p class="semi-bold center">'.$lang['srv_check_pogoji_ok'].'!</p>';
|
echo '<p class="semi-bold center">'.$lang['srv_check_pogoji_ok'].'!</p>';
|
||||||
|
|
||||||
?>
|
|
||||||
<script>
|
|
||||||
$(function () {
|
|
||||||
$('#check_pogoji').animate({opacity: 1.0}, 3000).fadeOut('slow');
|
|
||||||
$('#fade').fadeOut("slow");
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
<?php
|
|
||||||
} else {
|
} else {
|
||||||
echo '1';
|
echo '1';
|
||||||
}
|
}
|
||||||
|
@ -349,12 +349,11 @@ class SurveyStatusProfiles
|
|||||||
# preverimo kaere statuse disejblamo na podlagi izbire načina kreiranja datoteke (samo 5,6 / vsi satusi)
|
# preverimo kaere statuse disejblamo na podlagi izbire načina kreiranja datoteke (samo 5,6 / vsi satusi)
|
||||||
list($collect_all_status) = mysqli_fetch_row(sisplet_query("SELECT collect_all_status FROM srv_data_files WHERE sid = '".self::$sid."'"));
|
list($collect_all_status) = mysqli_fetch_row(sisplet_query("SELECT collect_all_status FROM srv_data_files WHERE sid = '".self::$sid."'"));
|
||||||
|
|
||||||
echo '<table><tr>';
|
echo '<table>';
|
||||||
|
|
||||||
|
echo '<tr>';
|
||||||
// dodamo veljavne
|
// dodamo veljavne
|
||||||
foreach (self::$appropriateStatus as $index) {
|
foreach (self::$appropriateStatus as $index) {
|
||||||
if ($cnt&1) {
|
|
||||||
echo '</tr><tr>';
|
|
||||||
}
|
|
||||||
echo '<td style="width:50%">';
|
echo '<td style="width:50%">';
|
||||||
echo '<input name="srv_userstatus[]" type="checkbox" id="' . $index . '"' .
|
echo '<input name="srv_userstatus[]" type="checkbox" id="' . $index . '"' .
|
||||||
($curentProfileData['status'.$index] == 1 ? ' checked="checked"' : '') .
|
($curentProfileData['status'.$index] == 1 ? ' checked="checked"' : '') .
|
||||||
@ -363,10 +362,11 @@ class SurveyStatusProfiles
|
|||||||
echo '</label></td>';
|
echo '</label></td>';
|
||||||
$cnt++;
|
$cnt++;
|
||||||
}
|
}
|
||||||
|
echo '</tr>';
|
||||||
|
|
||||||
// dodamo neveljavne
|
// dodamo neveljavne
|
||||||
|
echo '<tr>';
|
||||||
foreach (self::$unAppropriateStatus as $index) {
|
foreach (self::$unAppropriateStatus as $index) {
|
||||||
if ($cnt&1)
|
|
||||||
echo '</tr><tr>';
|
|
||||||
echo '<td style="width:50%">';
|
echo '<td style="width:50%">';
|
||||||
echo '<input name="srv_userstatus[]" type="checkbox" id="' . $index . '"' .
|
echo '<input name="srv_userstatus[]" type="checkbox" id="' . $index . '"' .
|
||||||
($curentProfileData['status'.$index] == 1 ? ' checked="checked"' : '') .
|
($curentProfileData['status'.$index] == 1 ? ' checked="checked"' : '') .
|
||||||
@ -376,11 +376,11 @@ class SurveyStatusProfiles
|
|||||||
echo '</label></td>';
|
echo '</label></td>';
|
||||||
$cnt++;
|
$cnt++;
|
||||||
}
|
}
|
||||||
// dodamo null
|
echo '</tr>';
|
||||||
foreach (self::$unKnownStatus as $index) {
|
|
||||||
|
|
||||||
if ($cnt&1)
|
// dodamo null
|
||||||
echo '</tr><tr>';
|
echo '<tr>';
|
||||||
|
foreach (self::$unKnownStatus as $index) {
|
||||||
echo '<td style="width:50%">';
|
echo '<td style="width:50%">';
|
||||||
echo '<input name="srv_userstatus[]" type="checkbox" id="' . $index . '"' .
|
echo '<input name="srv_userstatus[]" type="checkbox" id="' . $index . '"' .
|
||||||
($curentProfileData['status'.$index] == 1 ? ' checked="checked"' : '') .
|
($curentProfileData['status'.$index] == 1 ? ' checked="checked"' : '') .
|
||||||
@ -390,8 +390,9 @@ class SurveyStatusProfiles
|
|||||||
echo '</label></td>';
|
echo '</label></td>';
|
||||||
$cnt++;
|
$cnt++;
|
||||||
}
|
}
|
||||||
|
echo '</tr>';
|
||||||
|
|
||||||
echo '</tr></table>';
|
echo '</table>';
|
||||||
|
|
||||||
echo '</fieldset>';
|
echo '</fieldset>';
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user